diff --git a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
index 189a8a7cd88e..d0ccd91ca862 100644
--- a/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
+++ b/src/Common/Commands.ScenarioTest/Commands.ScenarioTest.csproj
@@ -196,6 +196,12 @@
PreserveNewest
+
+ Always
+
+
+ Always
+
Always
@@ -220,6 +226,9 @@
Always
+
+ Always
+
Always
@@ -232,6 +241,12 @@
Always
+
+ Always
+
+
+ Always
+
Always
@@ -567,4 +582,4 @@
-->
-
+
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1
index 8005fb93f75d..77894caebb3a 100644
--- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1
+++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Common.ps1
@@ -89,3 +89,35 @@ function Cleanup-Storage
}
}
+<#
+.SYNOPSIS
+Gets test mode - 'Record' or 'Playback'
+#>
+function Get-ComputeTestMode
+{
+ $oldErrorActionPreferenceValue = $ErrorActionPreference;
+ $ErrorActionPreference = "SilentlyContinue";
+
+ try
+ {
+ $testMode = [Microsoft.Azure.Test.HttpRecorder.HttpMockServer]::Mode;
+ $testMode = $testMode.ToString();
+ }
+ catch
+ {
+ if (($Error.Count -gt 0) -and ($Error[0].Exception.Message -like '*Unable to find type*'))
+ {
+ $testMode = 'Record';
+ }
+ else
+ {
+ throw;
+ }
+ }
+ finally
+ {
+ $ErrorActionPreference = $oldErrorActionPreferenceValue;
+ }
+
+ return $testMode;
+}
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cscfg b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cscfg
new file mode 100644
index 000000000000..5669004c8b58
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cscfg
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cspkg b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cspkg
new file mode 100644
index 000000000000..efb5a1565d02
Binary files /dev/null and b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/Files/OneWebOneWorker.cspkg differ
diff --git a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1 b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1
index 57a4d0acc9bf..e8616f767a9a 100644
--- a/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1
+++ b/src/Common/Commands.ScenarioTest/Resources/ServiceManagement/ServiceManagementTests.ps1
@@ -344,6 +344,7 @@ function Run-NewAzureComputeParameterObjectTests
}
}
+# Run Set-AzurePlatformVMImage Cmdlet Negative Tests
function Run-AzurePlatformVMImageNegativeTest
{
$location = Get-DefaultLocation;
@@ -363,4 +364,207 @@ function Run-AzurePlatformVMImageNegativeTest
{ Set-AzurePlatformVMImage -ImageName $imgName -Permission $mode } `
"ForbiddenError: This operation is not allowed for this subscription.";
}
+}
+
+# Run Auto-Generated Service Extension Cmdlet Tests
+function Run-AutoGeneratedServiceExtensionCmdletTests
+{
+ # Setup
+ $location = Get-DefaultLocation;
+
+ $storageName = 'pstest' + (getAssetName);
+ New-AzureStorageAccount -StorageAccountName $storageName -Location $location;
+
+ # Associate the new storage account with the current subscription
+ Set-CurrentStorageAccountName $storageName;
+
+ $svcName = 'pstest' + (Get-CloudServiceName);
+
+ try
+ {
+ # Create Hosted Service Parameters
+ $svcCreateParams = New-AzureComputeParameterObject -FriendlyName 'HostedServiceCreateParameters';
+ $svcCreateParams.ServiceName = $svcName;
+ $svcCreateParams.Location = $location;
+ $svcCreateParams.Description = $svcName;
+ $svcCreateParams.Label = $svcName;
+
+ # Invoke Hosted Service Create
+ $st = Invoke-AzureComputeMethod -MethodName 'HostedServiceCreate' -ArgumentList $svcCreateParams;
+ Assert-AreEqual $st.StatusCode 'Created';
+ Assert-NotNull $st.RequestId;
+
+ # New-AzureDeployment (in Azure.psd1)
+ $testMode = Get-ComputeTestMode;
+ if ($testMode.ToLower() -ne 'playback')
+ {
+ $cspkg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cspkg';
+ }
+ else
+ {
+ $cspkg = "https://${storageName}.blob.azure.windows.net/blob/OneWebOneWorker.cspkg";
+ }
+ $cscfg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cscfg';
+
+ $st = New-AzureDeployment -ServiceName $svcName -Package $cspkg -Configuration $cscfg -Label $svcName -Slot Production;
+
+ $deployment = Get-AzureDeployment -ServiceName $svcName -Slot Production;
+ $config = $deployment.Configuration;
+
+ # Invoke Hosted Service Add Extension
+ $p1 = New-AzureComputeArgumentList -MethodName HostedServiceAddExtension;
+ $p1[0].Value = $svcName;
+ $p1[1].Value.Id = 'test';
+ $p1[1].Value.PublicConfiguration =
+@"
+
+
+ pstestuser
+
+
+"@;
+ $p1[1].Value.PrivateConfiguration =
+@"
+
+
+ pstestuser
+
+"@;
+ $p1[1].Value.ProviderNamespace = 'Microsoft.Windows.Azure.Extensions';
+ $p1[1].Value.Type = 'RDP';
+ $p1[1].Value.Version = '1.*';
+ $d1 = ($p1 | select -ExpandProperty Value);
+ $st = Invoke-AzureComputeMethod -MethodName HostedServiceAddExtension -ArgumentList $d1;
+
+ # Invoke Deployment Change Configuration
+ $p2 = New-AzureComputeArgumentList -MethodName DeploymentChangeConfigurationBySlot;
+ $p2[0].Value = $svcName;
+ $p2[1].Value = [Microsoft.WindowsAzure.Management.Compute.Models.DeploymentSlot]::Production;
+ $p2[2].Value = New-Object -TypeName Microsoft.WindowsAzure.Management.Compute.Models.DeploymentChangeConfigurationParameters;
+ $p2[2].Value.Configuration = $deployment.Configuration;
+ $p2[2].Value.ExtensionConfiguration = New-Object -TypeName Microsoft.WindowsAzure.Management.Compute.Models.ExtensionConfiguration;
+ $p2[2].Value.ExtensionConfiguration.AllRoles.Add('test');
+ $d2 = ($p2 | select -ExpandProperty Value);
+ $st = Invoke-AzureComputeMethod -MethodName DeploymentChangeConfigurationBySlot -ArgumentList $d2;
+
+ # Invoke Hosted Service Delete
+ $st = Invoke-AzureComputeMethod -MethodName 'HostedServiceDeleteAll' -ArgumentList $svcName;
+ Assert-AreEqual $st.StatusCode 'OK';
+ Assert-NotNull $st.RequestId;
+ }
+ finally
+ {
+ # Cleanup
+ Cleanup-CloudService $svcName;
+ }
+}
+
+# Run Service Extension Set Cmdlet Tests
+function Run-ServiceExtensionSetCmdletTests
+{
+ # Setup
+ $location = Get-DefaultLocation;
+ $imgName = Get-DefaultImage $location;
+
+ $storageName = 'pstest' + (getAssetName);
+ New-AzureStorageAccount -StorageAccountName $storageName -Location $location;
+
+ # Associate the new storage account with the current subscription
+ Set-CurrentStorageAccountName $storageName;
+
+ $svcName = 'pstest' + (Get-CloudServiceName);
+ $userName = "pstestuser";
+ $password = "p@ssw0rd";
+ $sPassword = ConvertTo-SecureString $password -AsPlainText -Force;
+ $credential = New-Object System.Management.Automation.PSCredential ($userName, $sPassword);
+
+ # Test
+ New-AzureService -ServiceName $svcName -Location $location;
+
+ try
+ {
+ # New-AzureDeployment (in Azure.psd1)
+ $cspkg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cspkg';
+ $cscfg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cscfg';
+
+ # Staging 1st
+ $st = New-AzureDeployment -ServiceName $svcName -Package $cspkg -Configuration $cscfg -Label $svcName -Slot Staging;
+ $st = Set-AzureServiceRemoteDesktopExtension -ServiceName $svcName -Slot Staging -Credential $credential;
+ $ex = Get-AzureServiceExtension -ServiceName $svcName -Slot Staging;
+ $st = Move-AzureDeployment -ServiceName $svcName;
+ $ex = Get-AzureServiceExtension -ServiceName $svcName -Slot Production;
+
+ # Staging 2nd
+ $st = New-AzureDeployment -ServiceName $svcName -Package $cspkg -Configuration $cscfg -Label $svcName -Slot Staging;
+ $st = Set-AzureServiceRemoteDesktopExtension -ServiceName $svcName -Slot Staging -Credential $credential;
+ $ex = Get-AzureServiceExtension -ServiceName $svcName -Slot Staging;
+ $st = Move-AzureDeployment -ServiceName $svcName;
+ $ex = Get-AzureServiceExtension -ServiceName $svcName -Slot Production;
+
+ # Set Extensions
+ $st = Set-AzureServiceRemoteDesktopExtension -ServiceName $svcName -Slot Production -Credential $credential;
+ $st = Set-AzureServiceRemoteDesktopExtension -ServiceName $svcName -Slot Staging -Credential $credential;
+ }
+ finally
+ {
+ # Cleanup
+ Cleanup-CloudService $svcName;
+ }
+}
+
+
+# Run Service Deployment Extension Cmdlet Tests
+function Run-ServiceDeploymentExtensionCmdletTests
+{
+ # Setup
+ $location = Get-DefaultLocation;
+ $imgName = Get-DefaultImage $location;
+
+ $storageName = 'pstest' + (getAssetName);
+ New-AzureStorageAccount -StorageAccountName $storageName -Location $location;
+
+ # Associate the new storage account with the current subscription
+ Set-CurrentStorageAccountName $storageName;
+
+ $svcName = 'pstest' + (Get-CloudServiceName);
+ $userName = "pstestuser";
+ $password = "p@ssw0rd";
+ $sPassword = ConvertTo-SecureString $password -AsPlainText -Force;
+ $credential = New-Object System.Management.Automation.PSCredential ($userName, $sPassword);
+
+ # Test
+ New-AzureService -ServiceName $svcName -Location $location;
+
+ try
+ {
+ # New-AzureDeployment (in Azure.psd1)
+ $cspkg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cspkg';
+ $cscfg = '.\Resources\ServiceManagement\Files\OneWebOneWorker.cscfg';
+
+ $rdpCfg1 = New-AzureServiceRemoteDesktopExtensionConfig -Credential $credential -Role WebRole1
+ $rdpCfg2 = New-AzureServiceRemoteDesktopExtensionConfig -Credential $credential -Role WorkerRole1;
+ $adCfg1 = New-AzureServiceADDomainExtensionConfig -Role WebRole1 -WorkgroupName 'test1';
+ $adCfg2 = New-AzureServiceADDomainExtensionConfig -Role WorkerRole1 -WorkgroupName 'test2';
+
+ $st = New-AzureDeployment -ServiceName $svcName -Package $cspkg -Configuration $cscfg -Label $svcName -Slot Production -ExtensionConfiguration $rdpCfg1,$adCfg1;
+ $exts = Get-AzureServiceExtension -ServiceName $svcName -Slot Production;
+ Assert-True { $exts.Count -eq 2 };
+
+ $st = New-AzureDeployment -ServiceName $svcName -Package $cspkg -Configuration $cscfg -Label $svcName -Slot Staging -ExtensionConfiguration $rdpCfg2,$adCfg2;
+ $exts = Get-AzureServiceExtension -ServiceName $svcName -Slot Staging;
+ Assert-True { $exts.Count -eq 2 };
+
+ $st = Set-AzureDeployment -Config -ServiceName $svcName -Configuration $cscfg -Slot Production -ExtensionConfiguration $rdpCfg2;
+ $exts = Get-AzureServiceExtension -ServiceName $svcName -Slot Production;
+ Assert-True { $exts.Count -eq 1 };
+
+ $st = Set-AzureDeployment -Config -ServiceName $svcName -Configuration $cscfg -Slot Staging -ExtensionConfiguration $rdpCfg1,$adCfg1;
+ $exts = Get-AzureServiceExtension -ServiceName $svcName -Slot Staging;
+ Assert-True { $exts.Count -eq 2 };
+ }
+ finally
+ {
+ # Cleanup
+ Cleanup-CloudService $svcName;
+ }
}
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs b/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs
index a8454f74c426..1af092da3d8a 100644
--- a/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs
+++ b/src/Common/Commands.ScenarioTest/ServiceManagement/ScenarioTests.cs
@@ -98,5 +98,32 @@ public void RunAzurePlatformVMImageNegativeTest()
{
this.RunPowerShellTest("Run-AzurePlatformVMImageNegativeTest");
}
+
+ [Fact]
+ [Trait(Category.Service, Category.ServiceManagement)]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.AcceptanceType, Category.BVT)]
+ public void RunAutoGeneratedServiceExtensionCmdletTests()
+ {
+ this.RunPowerShellTest("Run-AutoGeneratedServiceExtensionCmdletTests");
+ }
+
+ [Fact]
+ [Trait(Category.Service, Category.ServiceManagement)]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.AcceptanceType, Category.BVT)]
+ public void RunServiceExtensionSetCmdletTests()
+ {
+ this.RunPowerShellTest("Run-ServiceExtensionSetCmdletTests");
+ }
+
+ [Fact]
+ [Trait(Category.Service, Category.ServiceManagement)]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ [Trait(Category.AcceptanceType, Category.BVT)]
+ public void RunServiceDeploymentExtensionCmdletTests()
+ {
+ this.RunPowerShellTest("Run-ServiceDeploymentExtensionCmdletTests");
+ }
}
}
diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunAutoGeneratedServiceExtensionCmdletTests.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunAutoGeneratedServiceExtensionCmdletTests.json
new file mode 100644
index 000000000000..2a041310e095
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunAutoGeneratedServiceExtensionCmdletTests.json
@@ -0,0 +1,1673 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/locations",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9sb2NhdGlvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "19145"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "a273d1c3efb8ce32bf906ef9efd07496"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:15:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a273d1c3efb8ce32bf906ef9efd07496",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2EyNzNkMWMzZWZiOGNlMzJiZjkwNmVmOWVmZDA3NDk2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a273d1c3-efb8-ce32-bf90-6ef9efd07496\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "440ba38ae557c355bd615f36900c38e6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:15:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk1367\r\n \r\n \r\n East US\r\n Standard_GRS\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "358"
+ ],
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "f8e5a93d664accf090e05604f6819808"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:15:47 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/storage/pstestonesdk1367"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/f8e5a93d664accf090e05604f6819808",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Y4ZTVhOTNkNjY0YWNjZjA5MGUwNTYwNGY2ODE5ODA4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n f8e5a93d-664a-ccf0-90e0-5604f6819808\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "a404d0701181c0c6abb1f3fb42e9dfc7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:15:47 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/f8e5a93d664accf090e05604f6819808",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Y4ZTVhOTNkNjY0YWNjZjA5MGUwNTYwNGY2ODE5ODA4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n f8e5a93d-664a-ccf0-90e0-5604f6819808\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "895558873478c1c989054e6337d8b6af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk7160\r\n \r\n pstestonesdk7160\r\n East US\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "264"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cef1984fff01c661984fb3d7d8f70071"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:18 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/pstestonesdk7160"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb95a1bd18facb11bd2c4ccf969ca639"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:18 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n f3054690-8ec9-42df-90c7-b74e42b4608d\r\n Production\r\n 045f4456ab8c4599bfb286f6ead4d37e\r\n Running\r\n \r\n http://pstestonesdk7160.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.76.58\r\n \r\n \r\n Endpoint1\r\n 40.76.80.92\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Stopped\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.110.28\r\n Stopped\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 40.76.80.92\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-03T23:16:30Z\r\n 2015-08-03T23:17:18Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n 40.76.80.92\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4239"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cf51c1360912cc35b99bc05934c27140"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:32 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aa5003d51ceec1c8ae63570b392b04f9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:18 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMTM2Ny9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367\r\n \r\n TpS/9OG3oOZVb7CP2a/+a3iJM3XrHZy2XXdrruEuXqcLdNp2iAkWirGhogkClMWaJvcq5edpflehvI0p9VO2tA==\r\n fBtG1VPbkmlJ3Xc9hEfjqejjY7IQ78/FLOwi9StxWQCipzLSPQGnRDv1I7G2YHx3pyXpRQvWxvp0vv+KgWsqIw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "bddbd1e45eaec058bbe8cc2b7a33591e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:19 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMTM2Ny9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367\r\n \r\n TpS/9OG3oOZVb7CP2a/+a3iJM3XrHZy2XXdrruEuXqcLdNp2iAkWirGhogkClMWaJvcq5edpflehvI0p9VO2tA==\r\n fBtG1VPbkmlJ3Xc9hEfjqejjY7IQ78/FLOwi9StxWQCipzLSPQGnRDv1I7G2YHx3pyXpRQvWxvp0vv+KgWsqIw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "578d62255414c170b019e12b1181d254"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMTM2Nw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367\r\n pstestonesdk1367\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk1367.blob.core.windows.net/\r\n https://pstestonesdk1367.queue.core.windows.net/\r\n https://pstestonesdk1367.table.core.windows.net/\r\n https://pstestonesdk1367.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-03T23:15:47Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "ef4554afbd67c90991758fe0ce6fb821"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:19 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMTM2Nw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk1367\r\n pstestonesdk1367\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk1367.blob.core.windows.net/\r\n https://pstestonesdk1367.queue.core.windows.net/\r\n https://pstestonesdk1367.table.core.windows.net/\r\n https://pstestonesdk1367.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-03T23:15:47Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "c3904e96c1bac3c7bf1d7b903a9f4b86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n f3054690-8ec9-42df-90c7-b74e42b4608d\r\n https://pstestonesdk1367.blob.core.windows.net/mydeployments/20150803_231620_OneWebOneWorker.cspkg\r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n true\r\n false\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1920"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "41d90c9c2659c0f5b79b3abb6a8b6b41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:30 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/41d90c9c2659c0f5b79b3abb6a8b6b41",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQxZDkwYzljMjY1OWMwZjViNzliM2FiYjZhOGI2YjQx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 41d90c9c-2659-c0f5-b79b-3abb6a8b6b41\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1d641397a10c2c881450f868187af37"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:16:30 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/41d90c9c2659c0f5b79b3abb6a8b6b41",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQxZDkwYzljMjY1OWMwZjViNzliM2FiYjZhOGI2YjQx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 41d90c9c-2659-c0f5-b79b-3abb6a8b6b41\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d2318ad98a36c953a981bf6775a905ce"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/41d90c9c2659c0f5b79b3abb6a8b6b41",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQxZDkwYzljMjY1OWMwZjViNzliM2FiYjZhOGI2YjQx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 41d90c9c-2659-c0f5-b79b-3abb6a8b6b41\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "073f56309446c71b928fd3223a97317d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/cf51c1360912cc35b99bc05934c27140",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2NmNTFjMTM2MDkxMmNjMzViOTliYzA1OTM0YzI3MTQw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cf51c136-0912-cc35-b99b-c05934c27140\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "f1c2a9a2a8d5c2e483aed2493929d312"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:33 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n test\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxQdWJsaWNDb25maWc+DQogIDxVc2VyTmFtZT5wc3Rlc3R1c2VyPC9Vc2VyTmFtZT4NCiAgPEV4cGlyYXRpb24+PC9FeHBpcmF0aW9uPg0KPC9QdWJsaWNDb25maWc+\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjxQcml2YXRlQ29uZmlnPg0KICA8UGFzc3dvcmQ+cHN0ZXN0dXNlcjwvUGFzc3dvcmQ+DQo8L1ByaXZhdGVDb25maWc+\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "635"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "914487554817ca3fa8c35ca1453cc45e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/914487554817ca3fa8c35ca1453cc45e",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzkxNDQ4NzU1NDgxN2NhM2ZhOGMzNWNhMTQ1M2NjNDVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 91448755-4817-ca3f-a8c3-5ca1453cc45e\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a2cb2d06275cfd48cfc718b3331416e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:17:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/914487554817ca3fa8c35ca1453cc45e",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzkxNDQ4NzU1NDgxN2NhM2ZhOGMzNWNhMTQ1M2NjNDVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 91448755-4817-ca3f-a8c3-5ca1453cc45e\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a8bb05e6f7c0c8a6b606ab25e06e0aeb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:18:06 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160/deploymentslots/Production/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9uLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n \r\n test\r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1778"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bad5f32b5dffcbc5a2add281b2e2f4fd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:18:06 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "97db177f8f7cc860b44a43d80b2904a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:18:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d13f3b46d8bc7e782647a5c463e4ef0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:18:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67172b1195a6ce14b4c5779c6669e653"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:19:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ca133b4aa609cbc29b13a7ee9c0d7a0e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:19:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99e76560374fc6babddbf965a8e2e279"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:20:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7d4fd63dc432cda982298e1501c7cf0a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:20:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aeb8518e1298c589a737087114b8ede0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:21:08 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2ee151337ca0cd49853d26049b9c5c3d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:21:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f07558b06e62ce0aa8b010a12bc03d8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:22:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "70870d51323ac5f6b509d57df51d5f81"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:22:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f0ef307725ecaac8c87b0fee912980d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:23:08 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/bad5f32b5dffcbc5a2add281b2e2f4fd",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JhZDVmMzJiNWRmZmNiYzVhMmFkZDI4MWIyZTJmNGZk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n bad5f32b-5dff-cbc5-a2ad-d281b2e2f4fd\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d7dc43d57d4cc4c96db2ead0116e574"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:23:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160?comp=media",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwP2NvbXA9bWVkaWE=",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1153f8740bbcf31ac0854d3b4d6e03a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:23:40 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1153f8740bbcf31ac0854d3b4d6e03a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMTUzZjg3NDBiYmNmMzFhYzA4NTRkM2I0ZDZlMDNh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1153f87-40bb-cf31-ac08-54d3b4d6e03a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "34fbfb3d0353c511a0cc71d1f377edd2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:23:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1153f8740bbcf31ac0854d3b4d6e03a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMTUzZjg3NDBiYmNmMzFhYzA4NTRkM2I0ZDZlMDNh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1153f87-40bb-cf31-ac08-54d3b4d6e03a\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "153cf68f5284cdedae86a1b7b3a8d769"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:24:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk7160?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs3MTYwP2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n The hosted service does not exist.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "199"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4b155ee80ae1c436886482235ff56981"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Mon, 03 Aug 2015 23:24:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ }
+ ],
+ "Names": {
+ "": [
+ "onesdk1367",
+ "onesdk7160"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e"
+ }
+}
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceDeploymentExtensionCmdletTests.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceDeploymentExtensionCmdletTests.json
new file mode 100644
index 000000000000..a8a0db19e24e
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceDeploymentExtensionCmdletTests.json
@@ -0,0 +1,5049 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/locations",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9sb2NhdGlvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "19145"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "c2ddebac2ec1ce2b85e6a2b9be0ae65b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:50 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/c2ddebac2ec1ce2b85e6a2b9be0ae65b",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2MyZGRlYmFjMmVjMWNlMmI4NWU2YTJiOWJlMGFlNjVi",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c2ddebac-2ec1-ce2b-85e6-a2b9be0ae65b\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "9b8aa1a7e10cc45f8bba916628bef326"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:50 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/images",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9pbWFnZXM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image of Visual Studio Community 2013 Update 5 with Azure Tools 2.7 enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 5 with Azure 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2015-Community-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=614946\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 with Azure SDK 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=614945\r\n With Visual Studio Enterprise you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Enterprise 2015 with Azure SDK 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-745.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-752.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-758.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-723.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-08-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150731\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-31T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150731\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-31T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.1-075-byol\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1.1\r\n 2015-08-04T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-20150726-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-20150726-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-20150726-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-AOS-OS-Win2012R2-7July28\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 Applicaion Object Server software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 AOS on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-BI-OS-Win2012R2-7July28\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 business intelligence software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 BI on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-26T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July28\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Developer on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150728) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150730.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150730.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150731.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150731.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_3-LTS-amd64-server-20150805-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.3-LTS (amd64 20150805) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.3-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-08-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507102001-122-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507102001. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507102212-123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507102212. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507221609-125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507221609. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507221910-126-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507221910. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507222241-127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507222241. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507231619-128-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507231619. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507232107-131-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507232107. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507241850-132-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507241850. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150421.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150421.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150722) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150728) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150729) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150520.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.10 (amd64 20150520.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-05-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150728.1-alpha2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.10 (amd64 20150728.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150722.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150730.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150731.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150721-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150721 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150724 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150727-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150727 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150729 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150803-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150803 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-08-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150805-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150805 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-08-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_3-LTS-amd64-server-20150805-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150805 of Ubuntu Server 14.04.3-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-08-06T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150715-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150715 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150729 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150802-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150802 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-08-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150723-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150723 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150723.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150723.1 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150724 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150725-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150725 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150726-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150726 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150728.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728.1 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150801-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150801 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-08-01T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150802-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150802 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-08-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150806 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp4-priority-v20150714\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP4 (Premium Image)\r\n 2015-07-14T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp4-v20150714\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP4\r\n 2015-07-14T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-7-9-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on January 5, 2016. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 Datacenter\r\n 2015-07-09T07:00:00Z\r\n false\r\n Large\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.407.1-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n [Known Issues in this Release.|http://go.microsoft.com/fwlink/?LinkID=398124|_blank]. Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQLServer2016CTP2-13.0.407.1-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n 2015-07-27T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "619148"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d7bd16fa7f2fcd088854f22fb6764dd6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/d7bd16fa7f2fcd088854f22fb6764dd6",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Q3YmQxNmZhN2YyZmNkMDg4ODU0ZjIyZmI2NzY0ZGQ2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n d7bd16fa-7f2f-cd08-8854-f22fb6764dd6\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "85e0ad33114acae798dd3ca7f6502bc2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:54 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/vmimages",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy92bWltYWdlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n imgpstestsvc1463\r\n \r\n User\r\n \r\n imgpstestsvc1463-os-2015-08-06\r\n ReadWrite\r\n Specialized\r\n Windows\r\n http://psteststo7810.blob.core.windows.net/myvhds/imgpstestsvc1463-os-2015-08-06.vhd\r\n 32\r\n Standard\r\n \r\n \r\n \r\n imgpstestsvc1463-datadisk-0-2015-08-06\r\n ReadOnly\r\n 0\r\n https://psteststo7810.blob.core.windows.net/myvhds/imgpstestsvc1463-datadisk-0-2015-08-06.vhd\r\n 1\r\n Standard\r\n \r\n \r\n pstestsvc1463\r\n pstestsvc1463Prod\r\n pstestsvc1463\r\n West US\r\n 2015-08-06T21:27:54.644789Z\r\n 2015-08-06T21:27:54.644789Z\r\n false\r\n VMImageReadyForUse\r\n StoppedVM\r\n Large\r\n \r\n \r\n imgpstestsvc14632\r\n \r\n User\r\n \r\n imgpstestsvc14632-os-2015-08-06\r\n ReadWrite\r\n Generalized\r\n Windows\r\n http://psteststo7810.blob.core.windows.net/myvhds/imgpstestsvc14632-os-2015-08-06.vhd\r\n 32\r\n Standard\r\n \r\n \r\n \r\n imgpstestsvc14632-datadisk-0-2015-08-06\r\n ReadOnly\r\n 0\r\n https://psteststo7810.blob.core.windows.net/myvhds/imgpstestsvc14632-datadisk-0-2015-08-06.vhd\r\n 1\r\n Standard\r\n \r\n \r\n pstestsvc1463\r\n pstestsvc1463Prod\r\n pstestsvc1463\r\n West US\r\n 2015-08-06T21:28:26.0405273Z\r\n 2015-08-06T21:28:26.0405273Z\r\n false\r\n VMImageReadyForUse\r\n StoppedVM\r\n Large\r\n \r\n \r\n imgpstestsvc7633\r\n \r\n User\r\n \r\n imgpstestsvc7633-os-2015-08-06\r\n ReadWrite\r\n Specialized\r\n Windows\r\n http://psteststo5543.blob.core.windows.net/myvhds/imgpstestsvc7633-os-2015-08-06.vhd\r\n 32\r\n Standard\r\n \r\n \r\n \r\n imgpstestsvc7633-datadisk-0-2015-08-06\r\n ReadOnly\r\n 0\r\n https://psteststo5543.blob.core.windows.net/myvhds/imgpstestsvc7633-datadisk-0-2015-08-06.vhd\r\n 1\r\n Standard\r\n \r\n \r\n pstestsvc7633\r\n pstestsvc7633Prod\r\n pstestsvc7633\r\n West US\r\n 2015-08-06T21:46:14.9828955Z\r\n 2015-08-06T21:46:14.9828955Z\r\n false\r\n VMImageReadyForUse\r\n StoppedVM\r\n Large\r\n \r\n \r\n imgpstestsvc76332\r\n \r\n User\r\n \r\n imgpstestsvc76332-os-2015-08-06\r\n ReadWrite\r\n Generalized\r\n Windows\r\n http://psteststo5543.blob.core.windows.net/myvhds/imgpstestsvc76332-os-2015-08-06.vhd\r\n 32\r\n Standard\r\n \r\n \r\n \r\n imgpstestsvc76332-datadisk-0-2015-08-06\r\n ReadOnly\r\n 0\r\n https://psteststo5543.blob.core.windows.net/myvhds/imgpstestsvc76332-datadisk-0-2015-08-06.vhd\r\n 1\r\n Standard\r\n \r\n \r\n pstestsvc7633\r\n pstestsvc7633Prod\r\n pstestsvc7633\r\n West US\r\n 2015-08-06T21:46:45.5386428Z\r\n 2015-08-06T21:46:45.5386428Z\r\n false\r\n VMImageReadyForUse\r\n StoppedVM\r\n Large\r\n \r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06-datadisk-0-2015-07-28\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.06-datadisk-0-2015-07-28\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.3v7\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.3\r\n \r\n hw_sandbox_hdp_2.3v7\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.03-os-2015-07-21\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-21T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.03-os-2015-07-21\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-21T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04-datadisk-0-2015-07-22\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05-datadisk-0-2015-07-23\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.04-datadisk-0-2015-07-22\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.05-datadisk-0-2015-07-23\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "165223"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8db863ff16e8c8d58b7d9eeb2457087b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:55 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8db863ff16e8c8d58b7d9eeb2457087b",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhkYjg2M2ZmMTZlOGM4ZDU4YjdkOWVlYjI0NTcwODdi",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8db863ff-16e8-c8d5-8b7d-9eeb2457087b\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "438ca5c7e5d6c78c9bc135b6a3e48e2f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:55 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk2888\r\n \r\n \r\n East US\r\n Standard_GRS\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "358"
+ ],
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "2bd9741b3c75c883941ac33a461c2a89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:57 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/storage/pstestonesdk2888"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/2bd9741b3c75c883941ac33a461c2a89",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzJiZDk3NDFiM2M3NWM4ODM5NDFhYzMzYTQ2MWMyYTg5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 2bd9741b-3c75-c883-941a-c33a461c2a89\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "00b6f3295daac6f19b906f24acb9a6f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:17:57 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/2bd9741b3c75c883941ac33a461c2a89",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzJiZDk3NDFiM2M3NWM4ODM5NDFhYzMzYTQ2MWMyYTg5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 2bd9741b-3c75-c883-941a-c33a461c2a89\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "e3e445927c52c68da2e1213ec5fc087d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:28 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk8943\r\n \r\n East US\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "217"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f4083bdcfbacb39a7cdf57f68f5d151"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:30 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/pstestonesdk8943"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7f4083bdcfbacb39a7cdf57f68f5d151",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzdmNDA4M2JkY2ZiYWNiMzlhN2NkZjU3ZjY4ZjVkMTUx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7f4083bd-cfba-cb39-a7cd-f57f68f5d151\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "aaee69a448acc068a149adc35976f764"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7ba79215294ce06a306b0ed1b9aeb9d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3506a9134d82c226a7f0f97d63a89d25"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:34 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Stopped\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n Stopped\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:20:29Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4944"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c334c5203b5cfa0a5202071f747d365"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:20:45Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4946"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a550a195e410cbd4a0e7dcedebf404f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:44 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:20:45Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4946"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5d9b13e27eefc6e2b937900ffe1de58e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:22:56Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4946"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "34304de23b89c97b8a347ad0c73615ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:56 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n StartingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:22:56Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4946"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c23a302b620ac6a1aaf69c38c359c6c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:58 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:25:51Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4922"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d0f1e956e740c4b998fc223537ee0997"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:02 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:26:07Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4922"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "15ec5285b076c72684f226dd6a5cde0c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:28:41Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4922"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb54790b56a9c64281530158ed0c0541"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:28:41Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4922"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7286d9d31e9ec2348823eaf456c0cf13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d71a4ae810cc314a75a20435dca621b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "75e23c235298c8ed877572a543dd3b15"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:34 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0e56934d495cc19d9d6b899f7440ea7a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b8620654ae6c0299a6c62388533e21d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:44 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fabb5578da7c83ca296893c8ec4c83f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:22:54Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5029"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e4b4bbcb90c6cc309167172659bce2f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:55 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Starting\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Starting\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:22:54Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5029"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72f1f49c6239c23fbc89c67b561ff273"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:58 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:26:04Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5039"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76b3fe729c1bc9b88fc16ea610cc4387"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n RoleStateUnknown\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:26:04Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5039"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0cc28e3b3a45c97f852d2a650211a668"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:05 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:28:42Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4933"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d462ead5c3acc12ba49054e97d8201c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:29:10Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4933"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5379c9d3003c8f2a1547e7498a2d2f1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OC9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n \r\n vrYVQG4GGj+bjryxRkSH+ChPavffNxFzTmL6r+uDdOe5nUqZmc5z004HrTUAdw8TIzLohsKXsUkY2snqE6Cvig==\r\n ENngrzwVFAik3hiSjnjk5BHaKWnHWXqHRTH1Oe+u4tHw7WIDlLNiPjUbLU7S2tBhOqq29AaLGdnE4gGgcPF3Mw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "65728ef86bd0c9418cc3721d31ce18c0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:32 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OC9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n \r\n vrYVQG4GGj+bjryxRkSH+ChPavffNxFzTmL6r+uDdOe5nUqZmc5z004HrTUAdw8TIzLohsKXsUkY2snqE6Cvig==\r\n ENngrzwVFAik3hiSjnjk5BHaKWnHWXqHRTH1Oe+u4tHw7WIDlLNiPjUbLU7S2tBhOqq29AaLGdnE4gGgcPF3Mw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "8f84193fca28c08fb7db2acfca1d031a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:40 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OC9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n \r\n vrYVQG4GGj+bjryxRkSH+ChPavffNxFzTmL6r+uDdOe5nUqZmc5z004HrTUAdw8TIzLohsKXsUkY2snqE6Cvig==\r\n ENngrzwVFAik3hiSjnjk5BHaKWnHWXqHRTH1Oe+u4tHw7WIDlLNiPjUbLU7S2tBhOqq29AaLGdnE4gGgcPF3Mw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "0fb987517d8dc7eb9687702baa22a545"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OC9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n \r\n vrYVQG4GGj+bjryxRkSH+ChPavffNxFzTmL6r+uDdOe5nUqZmc5z004HrTUAdw8TIzLohsKXsUkY2snqE6Cvig==\r\n ENngrzwVFAik3hiSjnjk5BHaKWnHWXqHRTH1Oe+u4tHw7WIDlLNiPjUbLU7S2tBhOqq29AaLGdnE4gGgcPF3Mw==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "b7774198812dce888347ef46d622e489"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n pstestonesdk2888\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk2888.blob.core.windows.net/\r\n https://pstestonesdk2888.queue.core.windows.net/\r\n https://pstestonesdk2888.table.core.windows.net/\r\n https://pstestonesdk2888.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-07T08:17:58Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "c279fb38173dc121b739da4bd0448295"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:32 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n pstestonesdk2888\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk2888.blob.core.windows.net/\r\n https://pstestonesdk2888.queue.core.windows.net/\r\n https://pstestonesdk2888.table.core.windows.net/\r\n https://pstestonesdk2888.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-07T08:17:58Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "fda2d3630550c703b09b21a5c5723f2f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:40 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n pstestonesdk2888\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk2888.blob.core.windows.net/\r\n https://pstestonesdk2888.queue.core.windows.net/\r\n https://pstestonesdk2888.table.core.windows.net/\r\n https://pstestonesdk2888.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-07T08:17:58Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "5f13f10d776fc9efb7bac60745badf51"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:46 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrMjg4OA==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk2888\r\n pstestonesdk2888\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk2888.blob.core.windows.net/\r\n https://pstestonesdk2888.queue.core.windows.net/\r\n https://pstestonesdk2888.table.core.windows.net/\r\n https://pstestonesdk2888.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-07T08:17:58Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "fd8292e6bb03c0dc95a2eed32692728a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "115"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e28837606316c41c8082a5ff1b30eee0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:34 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1135"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5177b34a10d5c0d89fcaafae87949995"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1135"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5adb954a515c1de991f216498b601be"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDI8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2143"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e17c1f6e6ea9cbe28387e6dfafe37082"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:56 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDI8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2143"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a884ff0c631fc3629cc9a09ed5c81fe3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:58 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDI8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2613"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ea2fa8a4ba20c7f4bde6424bda09b4a0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDI8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2613"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "50323f97def8c578b779a8bd2848d1ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDE8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWcgeG1sbnM6eHNpPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYS1pbnN0YW5jZSIgeG1sbnM6eHNkPSJodHRwOi8vd3d3LnczLm9yZy8yMDAxL1hNTFNjaGVtYSI+CiAgPE5hbWU+dGVzdDI8L05hbWU+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Production-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 1.*\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3615"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "37459673132acd4bbe74b6fa2c601114"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:44 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "117"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5ad1e2657730c35286a2be52163ff90c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b36752022818cd558ef405fe7945780d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0071ba13eddcc2ca91a4146eda552acf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f148308b98ac4aebc12c648574ee3bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:20 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "47be62851b3dcdc9b8d03b03f9cd4e3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:58 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d7d364a39dbcf0bb30445a476371831"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:08 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/certificates/sha1-84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQGaL29ZOKQoZIsh/42WSP/zANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA3MDgxODM4WhcNMjAwODA3MDgxODM4WjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQD3oAxt0vLPYG/mcjG7jt35sr+d+I5KQqE4Lid2CUGg131g6ZynQwI3Fjy0I5FLKVxziYstYd8f/Jt7X/PyirTxSDa8hXMlY1qDhhAzcHUnCP297gUcb0UpZq//p9XzZIa3f5dYgYbSrij9AMT+uT3yZrErv4w8Tkmxc1tr5lAZlRV6s3P08H0sjFxLx6PdLz7WaMiDrOK3ePGPMPQ3V+oL0v4kMOQYtrBr7m8wiAzcB30tU5r0MUFd5oNWNxUAW367lo59ciEv9j0YTEDVw9K0ROBwhQYOoP9GfMsI2aKNHL+ZrNfIIdwxZ81I251iX+nCZR8CIifo9NSIuGDFuqRLAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAFHfhD80p+xfsCS9x1CTaIqkr30NvzZP7cNZSoayQIezEFobNzFXvYngqdwDzoV6SUN2Ar+isxBl605pTxjbxOExa+kc9s0McIdJYUyljXAQQFs24zCUhXs9SpeOuVBF6DcqogMx0Hy2dymoguSwnuP34ARPVk5xJa3NPwGTlY4XfQ/folRozo16Vg8eRN4lns4VO0CVHuovpvc9oq9oAtY82UAGBliRlj/D5gArporqBwA7M0klmfPL/1IcbDx6Qi9YKRI7YRKwlciTcIGDsWRvITSXE6Q6JfdS0eo05cPYKoQLB08FCZ3w4S/gHY7bPTiXrpGzPma8ZqsIWIVjCtg=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3770955876f6c58295e326a242450dd6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Production-Ext-0\r\n \r\n \r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "784"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c86eca496911cd19a818af4a65ba5f64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Production-Ext-0\r\n \r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHVibGljQ29uZmlnIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiPg0KICA8TmFtZT50ZXN0MTwvTmFtZT4NCjwvUHVibGljQ29uZmlnPg==\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHJpdmF0ZUNvbmZpZyB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIj4NCiAgPFBhc3N3b3JkIC8+DQogIDxVbmpvaW5Eb21haW5QYXNzd29yZCAvPg0KPC9Qcml2YXRlQ29uZmlnPg==\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "974"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4096ff8eddcccfb4b24e7f4ceb8a54cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Staging-Ext-0\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "828"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "36540583de93c27fbe858e003a5167f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:49 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHVibGljQ29uZmlnIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiPg0KICA8TmFtZT50ZXN0MjwvTmFtZT4NCjwvUHVibGljQ29uZmlnPg==\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHJpdmF0ZUNvbmZpZyB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIj4NCiAgPFBhc3N3b3JkIC8+DQogIDxVbmpvaW5Eb21haW5QYXNzd29yZCAvPg0KPC9Qcml2YXRlQ29uZmlnPg==\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1018"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ad65d9e4c73bce2bb02049c8899058af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:21 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WorkerRole1-RDP-Production-Ext-0\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "831"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "74ebf88e67cec2398bb816820948357a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:59 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n WebRole1-RDP-Staging-Ext-0\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDc8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "825"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4816be5406b9c53b9c32dcf950c47c62"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n ADDomain\r\n WebRole1-ADDomain-Staging-Ext-0\r\n 84D39D5CFDE8D0ECE3BBECF6D734DC21CA4252CA\r\n sha1\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHVibGljQ29uZmlnIHhtbG5zOnhzaT0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEtaW5zdGFuY2UiIHhtbG5zOnhzZD0iaHR0cDovL3d3dy53My5vcmcvMjAwMS9YTUxTY2hlbWEiPg0KICA8TmFtZT50ZXN0MTwvTmFtZT4NCjwvUHVibGljQ29uZmlnPg==\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTE2Ij8+DQo8UHJpdmF0ZUNvbmZpZyB4bWxuczp4c2k9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hLWluc3RhbmNlIiB4bWxuczp4c2Q9Imh0dHA6Ly93d3cudzMub3JnLzIwMDEvWE1MU2NoZW1hIj4NCiAgPFBhc3N3b3JkIC8+DQogIDxVbmpvaW5Eb21haW5QYXNzd29yZCAvPg0KPC9Qcml2YXRlQ29uZmlnPg==\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1015"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5dd7f087626c684b7690319bcbbbefa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:40 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/c86eca496911cd19a818af4a65ba5f64",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2M4NmVjYTQ5NjkxMWNkMTlhODE4YWY0YTY1YmE1ZjY0",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c86eca49-6911-cd19-a818-af4a65ba5f64\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b6554e1de1ec1c6bd99bc945a0624fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:18:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/c86eca496911cd19a818af4a65ba5f64",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2M4NmVjYTQ5NjkxMWNkMTlhODE4YWY0YTY1YmE1ZjY0",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c86eca49-6911-cd19-a818-af4a65ba5f64\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bcba7c165f55c7bc90c636e0cb9eab0b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:06 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4096ff8eddcccfb4b24e7f4ceb8a54cf",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQwOTZmZjhlZGRjY2NmYjRiMjRlN2Y0Y2ViOGE1NGNm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4096ff8e-ddcc-cfb4-b24e-7f4ceb8a54cf\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0e1d46d71cfcd9ba9707eac0a2da37d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4096ff8eddcccfb4b24e7f4ceb8a54cf",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQwOTZmZjhlZGRjY2NmYjRiMjRlN2Y0Y2ViOGE1NGNm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4096ff8e-ddcc-cfb4-b24e-7f4ceb8a54cf\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9938c23a707bc64386d59d24ed939d38"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n https://pstestonesdk2888.blob.core.windows.net/mydeployments/20150807_081833_OneWebOneWorker.cspkg\r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n true\r\n false\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Production-Ext-0\r\n \r\n \r\n WebRole1-ADDomain-Production-Ext-0\r\n \r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "2348"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b8592598dc6ce3f8660787d9dc08538"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8b8592598dc6ce3f8660787d9dc08538",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiODU5MjU5OGRjNmNlM2Y4NjYwNzg3ZDlkYzA4NTM4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8b859259-8dc6-ce3f-8660-787d9dc08538\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6f735b993286cf529e6d39278bf2a4a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:19:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8b8592598dc6ce3f8660787d9dc08538",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiODU5MjU5OGRjNmNlM2Y4NjYwNzg3ZDlkYzA4NTM4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8b859259-8dc6-ce3f-8660-787d9dc08538\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "524fbfe47a24ccbfb26c637c2285bddc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8b8592598dc6ce3f8660787d9dc08538",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiODU5MjU5OGRjNmNlM2Y4NjYwNzg3ZDlkYzA4NTM4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8b859259-8dc6-ce3f-8660-787d9dc08538\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a00b1f55c7ec46f8acc765cf3d5030e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk8943",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazg5NDM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3317c13a0eb0c3b0b45b44d3cf24421b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk8943",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazg5NDM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04f7e04937eaced9b93ec03439658310"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:55 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk8943",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazg5NDM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1aed0ec50cb3cc4da3bf3bb0610cc9a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:02 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk8943",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazg5NDM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d38b43068ab1cf2c8c79c76ab0504930"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/5177b34a10d5c0d89fcaafae87949995",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzUxNzdiMzRhMTBkNWMwZDg5ZmNhYWZhZTg3OTQ5OTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 5177b34a-10d5-c0d8-9fca-afae87949995\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "c0f6f265b7d3caa4b2eff43e13fe45f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/36540583de93c27fbe858e003a5167f3",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzM2NTQwNTgzZGU5M2MyN2ZiZTg1OGUwMDNhNTE2N2Yz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 36540583-de93-c27f-be85-8e003a5167f3\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63e512d87994cc0b8722efa24fa0d11d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:20:49 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/36540583de93c27fbe858e003a5167f3",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzM2NTQwNTgzZGU5M2MyN2ZiZTg1OGUwMDNhNTE2N2Yz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 36540583-de93-c27f-be85-8e003a5167f3\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3c51145b8a86c4dfbe12faacc53b9b46"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:19 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/ad65d9e4c73bce2bb02049c8899058af",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2FkNjVkOWU0YzczYmNlMmJiMDIwNDljODg5OTA1OGFm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ad65d9e4-c73b-ce2b-b020-49c8899058af\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64b20568b9d7c5fcbcd86302bf08dbf8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:21 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/ad65d9e4c73bce2bb02049c8899058af",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2FkNjVkOWU0YzczYmNlMmJiMDIwNDljODg5OTA1OGFm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ad65d9e4-c73b-ce2b-b020-49c8899058af\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1713945f6e59cc818fe7e5454fd5e2d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n https://pstestonesdk2888.blob.core.windows.net/mydeployments/20150807_082046_OneWebOneWorker.cspkg\r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n true\r\n false\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Staging-Ext-0\r\n \r\n \r\n WorkerRole1-ADDomain-Staging-Ext-0\r\n \r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "2351"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fcc44ed3e131cc489bd603a3d03ba786"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/fcc44ed3e131cc489bd603a3d03ba786",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2ZjYzQ0ZWQzZTEzMWNjNDg5YmQ2MDNhM2QwM2JhNzg2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n fcc44ed3-e131-cc48-9bd6-03a3d03ba786\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5289c722b80cc144b2bedcefb2598bc4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:21:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/fcc44ed3e131cc489bd603a3d03ba786",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2ZjYzQ0ZWQzZTEzMWNjNDg5YmQ2MDNhM2QwM2JhNzg2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n fcc44ed3-e131-cc48-9bd6-03a3d03ba786\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b822d6ffb967c441914f54bee27ae6a0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:22 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/fcc44ed3e131cc489bd603a3d03ba786",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2ZjYzQ0ZWQzZTEzMWNjNDg5YmQ2MDNhM2QwM2JhNzg2",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n fcc44ed3-e131-cc48-9bd6-03a3d03ba786\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "171fc9121dfcc369996561c93cdd6e30"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/e17c1f6e6ea9cbe28387e6dfafe37082",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2UxN2MxZjZlNmVhOWNiZTI4Mzg3ZTZkZmFmZTM3MDgy",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n e17c1f6e-6ea9-cbe2-8387-e6dfafe37082\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "684c16c54ed1c463888f9be3ca438a18"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:22:57 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/74ebf88e67cec2398bb816820948357a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc0ZWJmODhlNjdjZWMyMzk4YmI4MTY4MjA5NDgzNTdh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 74ebf88e-67ce-c239-8bb8-16820948357a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1dd14d59edc6c252acc10ed1d0208770"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/74ebf88e67cec2398bb816820948357a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc0ZWJmODhlNjdjZWMyMzk4YmI4MTY4MjA5NDgzNTdh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 74ebf88e-67ce-c239-8bb8-16820948357a\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09cfe4d17cb0c62b9135bec49b0652fb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:30 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Production/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9uLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n \r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1936"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "732760104768c7c5a99adc6799f7ff0a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72fd86d1a672cf45bf2a66cca30735dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:23:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67f96e12126bcb6ea9ece3ec989bf045"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe79acafd06dc77ca15f57b6f87c845d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:24:30 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ecfc56ff5634cc0981f5cd8a02fc75b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:25:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "08040cfafcefc25294e23b4b54937222"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:25:31 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732760104768c7c5a99adc6799f7ff0a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMjc2MDEwNDc2OGM3YzVhOTlhZGM2Nzk5ZjdmZjBh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 73276010-4768-c7c5-a99a-dc6799f7ff0a\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0940092188e1c447b57dcd654d67efa5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:02 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/ea2fa8a4ba20c7f4bde6424bda09b4a0",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2VhMmZhOGE0YmEyMGM3ZjRiZGU2NDI0YmRhMDliNGEw",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ea2fa8a4-ba20-c7f4-bde6-424bda09b4a0\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "49704b8d14b3c8a993f55a8647b9d5ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:04 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4816be5406b9c53b9c32dcf950c47c62",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQ4MTZiZTU0MDZiOWM1M2I5YzMyZGNmOTUwYzQ3YzYy",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4816be54-06b9-c53b-9c32-dcf950c47c62\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "328e202e1c76cdc19b714ce0839006f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4816be5406b9c53b9c32dcf950c47c62",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzQ4MTZiZTU0MDZiOWM1M2I5YzMyZGNmOTUwYzQ3YzYy",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4816be54-06b9-c53b-9c32-dcf950c47c62\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b4a6ee7ef13ac904a8ee72cad4354e08"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/d5dd7f087626c684b7690319bcbbbefa",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Q1ZGQ3ZjA4NzYyNmM2ODRiNzY5MDMxOWJjYmJiZWZh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n d5dd7f08-7626-c684-b769-0319bcbbbefa\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7ffda987bde1c141abec524c7d45d057"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:26:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/d5dd7f087626c684b7690319bcbbbefa",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Q1ZGQ3ZjA4NzYyNmM2ODRiNzY5MDMxOWJjYmJiZWZh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n d5dd7f08-7626-c684-b769-0319bcbbbefa\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab6384a5793cc8c6a89ed7a07efd5b2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deploymentslots/Staging/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzbG90cy9TdGFnaW5nLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n \r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "2028"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "32ef1b183a40c1a3b41ab4e088fdc3e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/32ef1b183a40c1a3b41ab4e088fdc3e7",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzMyZWYxYjE4M2E0MGMxYTNiNDFhYjRlMDg4ZmRjM2U3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 32ef1b18-3a40-c1a3-b41a-b4e088fdc3e7\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b47ccdb964ace0aa93aa95c19b584d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/32ef1b183a40c1a3b41ab4e088fdc3e7",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzMyZWYxYjE4M2E0MGMxYTNiNDFhYjRlMDg4ZmRjM2U3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 32ef1b18-3a40-c1a3-b41a-b4e088fdc3e7\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e85dc4ec7bd8c9308ce86344c183e3ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:27:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/32ef1b183a40c1a3b41ab4e088fdc3e7",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzMyZWYxYjE4M2E0MGMxYTNiNDFhYjRlMDg4ZmRjM2U3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 32ef1b18-3a40-c1a3-b41a-b4e088fdc3e7\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e1fc3ef0dd70c929bfd6516ca312c732"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/32ef1b183a40c1a3b41ab4e088fdc3e7",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzMyZWYxYjE4M2E0MGMxYTNiNDFhYjRlMDg4ZmRjM2U3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 32ef1b18-3a40-c1a3-b41a-b4e088fdc3e7\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8dda41519fa1cab0b4650de4707b87f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/37459673132acd4bbe74b6fa2c601114",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzM3NDU5NjczMTMyYWNkNGJiZTc0YjZmYTJjNjAxMTE0",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 37459673-132a-cd4b-be74-b6fa2c601114\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "eeaafefc03b3c95a829818a50c9290df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:44 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzP2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943\r\n pstestonesdk8943\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-07T08:18:30Z\r\n 2015-08-07T08:21:52Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk8943\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:28:42Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:28:41Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "10474"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5182bdbc8c3c3ce943c6144cd867550"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzP2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943\r\n pstestonesdk8943\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-07T08:18:30Z\r\n 2015-08-07T08:21:52Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk8943\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:28:42Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n cdf34a4c-363c-41ba-9274-0a1d859d3b88\r\n Production\r\n 50ecf2507df146d7bc966ccef242671a\r\n Running\r\n \r\n http://pstestonesdk8943.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.106.56\r\n \r\n \r\n Endpoint1\r\n 137.135.102.129\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.84.95\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 137.135.102.129\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 3389\r\n tcp\r\n 137.135.102.129\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:19:38Z\r\n 2015-08-07T08:28:41Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n WorkerRole1-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 137.135.102.129\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "10474"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "48663ca72a80c0b2a2e68ced97b7f360"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzP2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943\r\n pstestonesdk8943\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-07T08:18:30Z\r\n 2015-08-07T08:21:52Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk8943\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673\r\n Staging\r\n 3bd64017875c48249b23071ed5c92166\r\n Running\r\n \r\n http://3bd64017875c48249b23071ed5c92166.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.112.97\r\n \r\n \r\n Endpoint1\r\n 191.237.79.214\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.79.214\r\n 3389\r\n 20001\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.117.80.26\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.79.214\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-07T08:21:52Z\r\n 2015-08-07T08:29:10Z\r\n \r\n \r\n 2015-08-04T15:59:24Z\r\n 2015-08-08T15:59:24Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n WebRole1-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n WebRole1-ADDomain-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.79.214\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5654"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e8e3ad07a51ac4bb8dd7442e2327fbb8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deployments/cdf34a4c-363c-41ba-9274-0a1d859d3b88",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzL2NkZjM0YTRjLTM2M2MtNDFiYS05Mjc0LTBhMWQ4NTlkM2I4OA==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe5963e7951ec1999771e05486e0b868"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:46 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/fe5963e7951ec1999771e05486e0b868",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2ZlNTk2M2U3OTUxZWMxOTk5NzcxZTA1NDg2ZTBiODY4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n fe5963e7-951e-c199-9771-e05486e0b868\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c91bb1ea8ea5c7909020374a41f3b105"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:28:46 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/fe5963e7951ec1999771e05486e0b868",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2ZlNTk2M2U3OTUxZWMxOTk5NzcxZTA1NDg2ZTBiODY4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n fe5963e7-951e-c199-9771-e05486e0b868\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd38b4fc7b71c77eabb177dc6d386707"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943/deployments/22ecff5c-b93a-4dd0-bed4-f7cbcfe9f673",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQzL2RlcGxveW1lbnRzLzIyZWNmZjVjLWI5M2EtNGRkMC1iZWQ0LWY3Y2JjZmU5ZjY3Mw==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16c3fdb62aa6ca9994ed0350c49cbf7d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/16c3fdb62aa6ca9994ed0350c49cbf7d",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzE2YzNmZGI2MmFhNmNhOTk5NGVkMDM1MGM0OWNiZjdk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 16c3fdb6-2aa6-ca99-94ed-0350c49cbf7d\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb1c941501d5c76bb1da571a70bd35a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/16c3fdb62aa6ca9994ed0350c49cbf7d",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzE2YzNmZGI2MmFhNmNhOTk5NGVkMDM1MGM0OWNiZjdk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 16c3fdb6-2aa6-ca99-94ed-0350c49cbf7d\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e4304f46dec2ca548acf2bf01829b7e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk8943",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGs4OTQz",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "51607a2b3231c3aba01102aa7683c3b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 08:29:49 GMT"
+ ],
+ "Server": [
+ "1.0.6198.253",
+ "(rd_rdfe_stable.150804-1019)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "": [
+ "onesdk2888",
+ "onesdk8943"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e"
+ }
+}
\ No newline at end of file
diff --git a/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceExtensionSetCmdletTests.json b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceExtensionSetCmdletTests.json
new file mode 100644
index 000000000000..2b3cebbb2ab3
--- /dev/null
+++ b/src/Common/Commands.ScenarioTest/SessionRecords/Microsoft.WindowsAzure.Commands.ScenarioTest.ServiceManagementTests/RunServiceExtensionSetCmdletTests.json
@@ -0,0 +1,6149 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/locations",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9sb2NhdGlvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n East US\r\n East US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West US\r\n West US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Premium_LRS\r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n Central US\r\n Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n South Central US\r\n South Central US\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n East US 2\r\n East US 2\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n Standard_G1\r\n Standard_G2\r\n Standard_G3\r\n Standard_G4\r\n Standard_G5\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n North Europe\r\n North Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n \r\n West Europe\r\n West Europe\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A10\r\n A11\r\n A5\r\n A6\r\n A7\r\n A8\r\n A9\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n Southeast Asia\r\n Southeast Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n Standard_DS1\r\n Standard_DS11\r\n Standard_DS12\r\n Standard_DS13\r\n Standard_DS14\r\n Standard_DS2\r\n Standard_DS3\r\n Standard_DS4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n Premium_LRS\r\n \r\n \r\n \r\n \r\n East Asia\r\n East Asia\r\n \r\n Compute\r\n Storage\r\n PersistentVMRole\r\n HighMemory\r\n \r\n \r\n \r\n A5\r\n A6\r\n A7\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n A5\r\n A6\r\n A7\r\n Basic_A0\r\n Basic_A1\r\n Basic_A2\r\n Basic_A3\r\n Basic_A4\r\n ExtraLarge\r\n ExtraSmall\r\n Large\r\n Medium\r\n Small\r\n Standard_D1\r\n Standard_D11\r\n Standard_D12\r\n Standard_D13\r\n Standard_D14\r\n Standard_D2\r\n Standard_D3\r\n Standard_D4\r\n \r\n \r\n \r\n \r\n Standard_LRS\r\n Standard_ZRS\r\n Standard_GRS\r\n Standard_RAGRS\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "19145"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "8ba49337e81dc7b8994f525e66a3fac3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:32 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8ba49337e81dc7b8994f525e66a3fac3",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiYTQ5MzM3ZTgxZGM3Yjg5OTRmNTI1ZTY2YTNmYWMz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8ba49337-e81d-c7b8-994f-525e66a3fac3\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "069e27908b62c5ec98553f4c09352b19"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:32 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/images",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9pbWFnZXM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 03f55de797f546a1b29d1b8d66be687a__CoreCLR-x64-Beta5-Linux-PartsUnlimited-Demo-App-201504.29\r\n Linux\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Linux VM image with coreclr-x64-beta5-11624 installed to /opt/dnx. This image is based on Ubuntu 14.04 LTS, with prerequisites of CoreCLR installed. It also contains PartsUnlimited demo app which runs on the installed coreclr. The demo app is installed to /opt/demo. To run the demo, please type the command '/opt/demo/Kestrel' in a terminal window. The website is listening on port 5004. Please enable or map a endpoint of HTTP port 5004 for your azure VM.\r\n CoreCLR x64 Beta5 (11624) with PartsUnlimited Demo App on Ubuntu Server 14.04 LTS\r\n 2015-04-29T07:00:00Z\r\n false\r\n Ubuntu-cof-45.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D1\r\n Microsoft Visual Studio Group\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2014-11-12T08:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.20\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=13350\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Team-Foundation-Server-2013-Update4-WS2012R2-201503.27\r\n Windows\r\n http://www.microsoft.com/en-us/legal/IntellectualProperty/UseTerms/Default.aspx\r\n Microsoft Team Foundation Server 2013 Trial on Windows Server 2012 R2 Update. Virtual Machines created with this trial image will require a product key for Team Foundation Server (such as from an MSDN Subscription). This image includes a complete installation of Team Foundation Server 2013 Update 4. Some components require additional setup and configuration. You can configure SQL Server using SQL Server Express included in this image, by downloading and installing SQL Server Standard edition (from an MSDN Subscription), or by connect to a pre-existing SQL Server. Minimum virtual machine size for this image is Medium. For more details on TFS server setup please see the [Team Foundation Server install guide|http://msdn.microsoft.com/en-us/library/dd631902.aspx].\r\n Team Foundation Server 2013 Update 4 on Windows Server 2012 R2\r\n 2015-03-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2013-Community-VSU5-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image of Visual Studio Community 2013 Update 5 with Azure Tools 2.7 enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 5 with Azure 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=286720\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2015-Community-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=614946\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 with Azure SDK 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__VS-2015-Enterprise-AzureSDK-2.7-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=614945\r\n With Visual Studio Enterprise you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Enterprise 2015 with Azure SDK 2.7 on Windows Server 2012 R2\r\n 2015-07-20T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-ApacheCordova-CTP3.1-AzureSDK-2.6-WS2012R2-201505.27\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n This image contains Windows Server 2012 R2, Visual Studio Community 2013, and CTP 3.1 of the Tools for Apache Cordova. It allows you to easily and quickly set up a development environment in Azure to build and test Android, iOS, and Windows apps using HTML, CSS, and JavaScript. Please see [http://go.microsoft.com/fwlink/?LinkID=397716|http://go.microsoft.com/fwlink/?LinkID=397716] for more information.\r\n Visual Studio Community 2013 with Tools for Apache Cordova CTP 3.1 on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=286720\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-12.0.31101.0-AzureSDK-2.6-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Visual Studio Community 2013 image enables you to unleash the full power of Visual Studio to develop cross-platform solutions. Create apps in one unified IDE, and incorporate new languages, features, and development tools into them with Visual Studio Extensions (available in the Visual Studio Gallery).\r\n Visual Studio Community 2013 Update 4 on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2013-Community-VSU4-AzureSDK-2.51-NTVS-1.0-WS2012R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=430755\r\n The Node.js Tools 1.0 for Visual Studio (NTVS) image enables you to unleash the full power of Visual Studio to develop Node.js solutions. NTVS also includes a list of project templates using the Express framework, which enables you to quickly create and deploy websites or Cloud Services to Microsoft Azure or other platforms.\r\n Visual Studio Community 2013 Update 4 with Tools for Node.js on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=299229\r\n Medium\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Community-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Community 2015 is our free, full featured and extensible IDE for non-enterprise application development. This image contains Windows Server 2012 R2 with Visual Studio Community 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Community 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Enterprise-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n Visual Studio Enterprise supports developers creating business applications looking for the scale, quality and productivity required in organizations of any size. Team collaboration, DevOps, release management and more are core scenarios for Visual Studio Enterprise. This image contains Windows Server 2012 R2 with Visual Studio Enterprise 2015 RC. It allows you to easily and quickly set up a development environment in Azure to plan, build, release and operate applications using Visual Studio.\r\n Visual Studio Enterprise 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 03f55de797f546a1b29d1b8d66be687a__Visual-Studio-2015-Professional-RC-AzureSDK-2.6-WS2012R2-201505.26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=521895\r\n With Visual Studio Professional, you can create applications across devices and services, using a single solution with a consistent development experience. You get the tools, you need to deliver desktop, Windows Store, Windows Phone, and Office apps, as well as mobile web apps across any device, web site, cloud service, and more. This image contains Windows Server 2012 R2 with Visual Studio Professional 2015 RC. It allows you to easily and quickly set up a development environment in Azure to build and test applications using Visual Studio.\r\n Visual Studio Professional 2015 RC with Azure SDK 2.6 on Windows Server 2012 R2\r\n 2015-05-26T00:00:00Z\r\n false\r\n VisualStudio2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=528096\r\n Standard_D2\r\n Microsoft Visual Studio Group\r\n VisualStudio2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.2-x64-v5.8.8.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.2 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.6\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.3-x64-v5.8.8.9\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.3 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-03-01T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.4-x64-v13.5.0.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.4 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-22T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.5-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.5 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-6.6-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 6.6 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-CentOS-7.0-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n CentOS 7.0 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.4\r\n Linux\r\n \r\n \r\n \r\n false\r\n 2013-04-19T00:00:00Z\r\n false\r\n \r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.0.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-07-11T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-12-26T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2014-04-17T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v13.5.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8\r\n RightScale Linux v13\r\n false\r\n 2014-11-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.5\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2012-10-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.7\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-12.04-x64-v5.8.8.8\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 12.04 with RightLink 5.8.\r\n RightScale Linux v13\r\n false\r\n 2013-01-25T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-09-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.3\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.1\r\n RightScale Linux v14\r\n false\r\n 2014-10-06T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.1.5.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.2\r\n RightScale Linux v14\r\n false\r\n 2014-12-10T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-01-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n 0b11de9248dd4d87b18621318e037d37__RightImage-Ubuntu-14.04-x64-v14.2.1\r\n Linux\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Ubuntu 14.04 with RightLink 6.3\r\n RightScale Linux v14\r\n false\r\n 2015-03-23T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Linux\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.6.0_95-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321312\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 6 (update 95) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. WARNING: These older versions of the JRE and JDK are provided to help developers debug issues in older systems. They are not recommended for use in production. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server/|_blank]\r\n JDK 6 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n Java6_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321694\r\n Medium\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386544\r\n Java6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 7 (update 79) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://www.windowsazure.com/en-us/documentation/articles/virtual-machines-java-run-tomcat-application-server|_blank]\r\n JDK 7 on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__JDK-1.8.0_45-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321310\r\n [Java Platform|http://www.oracle.com/java|_blank], Standard Edition 8 (update 45) enables development of secure, portable, high-performance applications and includes a Java Development Kit (JDK), Java Runtime Environment (JRE), and tools for developing, debugging, and monitoring Java applications. Minimum recommended virtual machine size for this image is [Medium|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n JDK 8 on Windows Server 2012 R2\r\n 2015-05-07T00:00:00Z\r\n false\r\n Java7_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321701\r\n Medium\r\n Microsoft\r\n Java7_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321683\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321692\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-EE-WebLogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321684\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Enterprise Edition (11.2.0.4.0) provides comprehensive features to easily manage the most demanding transaction processing, business intelligence, and content management applications. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321686\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321689\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-11.2.0.4.0-SE-WebLogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321687\r\n [Oracle Database|http://www.oracle.com/database|_blank] 11g R2 Standard Edition (11.2.0.4.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank].\r\n Oracle Database 11g R2 and WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321688\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-20150507-SE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321317\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321696\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386537\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.1.0-SE-WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321318\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Standard Edition (12.1.0.1.0) is an affordable, full-featured data management solution that is ideal for midsize companies. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321695\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386542\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-20150507-EE-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321314\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439775.aspx|_blank]\r\n Oracle Database 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321699\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386538\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Oracle-Database-12.1.0.2.0-EE-WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321315\r\n [Oracle Database|http://www.oracle.com/database|_blank] 12c Enterprise Edition (12.1.0.2.0) is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466427.aspx|_blank]\r\n Oracle Database 12c and WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogicDatabase12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321698\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386541\r\n OracleWeblogicDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321313\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Enterprise Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [standard_D12 |http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Enterprise Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321700\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__WebLogic-12.1.2.0-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321316\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 12c Standard Edition (12.1.2.0) is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn439774.aspx|_blank]\r\n Oracle WebLogic Server 12c Standard Edition on Windows Server 2012\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic12_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321697\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-EE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=321682\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Enterprise Edition (10.3.6) is a leading Java application server for modern data centers. It takes full advantage of the latest hardware architectures including 64-bit addressable memory, multi-core computing systems and high-speed networks. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Enterprise Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321693\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386540\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Weblogic-10.3.6-SE-JDK-1.7.0_79-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=321691\r\n [Oracle WebLogic Server|http://www.oracle.com/weblogicserver|_blank] 11g Standard Edition (10.3.6) is a leading Java application server for enterprises of all sizes, providing developers with the tools and technologies to write enterprise applications and services quickly and operations teams with the administration capabilities to keep them up and running. Minimum recommended virtual machine size for this image is [Standard_D12|http://go.microsoft.com/fwlink/?LinkID=309169|_blank]. [Learn More|http://msdn.microsoft.com/en-us/library/dn466428.aspx|_blank]\r\n Oracle WebLogic Server 11g Standard Edition on Windows Server 2008 R2\r\n 2015-05-07T00:00:00Z\r\n true\r\n OracleWeblogic11_100.png\r\n http://go.microsoft.com/fwlink/?LinkId=321690\r\n Standard_D12\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=386539\r\n OracleWeblogic11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.7.0_76-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 7|http://www.azulsystems.com/products/zulu|_blank] (update 76) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 7 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.7 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404007\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 0c0083a6d9a24f2d91800e52cad83950__Zulu-1.8.0_40-20150507-Win-GA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=403017\r\n [Zulu 8|http://www.azulsystems.com/products/zulu|_blank] (update 40) is a Java Development Kit and a compliant implementation of the Java Standard Edition (SE) 8 specification for the Windows 64bit operating system. [Support|http://www.azulsystems.com/products/zulu/support-packages|_blank] is available from Azul Systems.\r\n Zulu OpenJDK package v1.8 on Windows Server 2012 R2\r\n false\r\n 2015-05-07T00:00:00Z\r\n true\r\n Zulu_Duke100x100.png\r\n http://go.microsoft.com/fwlink/?LinkId=403018\r\n Small\r\n Microsoft\r\n http://go.microsoft.com/fwlink/?LinkId=404008\r\n Zulu_Duke45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 81\r\n 29ad5df6dd0640ce9aae898da6e66f4f__GitHub-Enterprise-2.2.4\r\n Linux\r\n https://enterprise.github.com/license\r\n GitHub Enterprise is the on-premises version of GitHub.com, the world's largest software community. Collaborate, track issues, review code, and streamline your development processes - all on your servers. With the world's largest software development community already using GitHub, your business can be on the fast track to a better way of building software.\r\n GitHub Enterprise\r\n false\r\n 2015-06-17T07:00:00Z\r\n false\r\n https://enterprise.github.com/privacy\r\n Standard_DS3\r\n GitHub, Inc.\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-475.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-10-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-490.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-509.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-522.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-547.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2014-12-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-554.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-557.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-561.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-575.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-584.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-591.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-592.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-593.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-598.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-604.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-607.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-02-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-05T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-612.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-06T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-618.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-626.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-19T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-633.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-03-26T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-640.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-02T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-647.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-653.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-660.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-668.2.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-04-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-675.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-681.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-695.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-05-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-709.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-717.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-25T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-723.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-06-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-735.0.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-738.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-745.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-16T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-752.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Alpha-758.1.0\r\n Linux\r\n The Alpha channel closely tracks current development work and is released frequently. The newest versions of docker, etcd and fleet will be available for testing.\r\n CoreOS Alpha\r\n 2015-07-30T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-494.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-11T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2014-12-24T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.4.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-522.5.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-01-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-557.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-584.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-02-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-607.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-612.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-633.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-01T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-647.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-04-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-668.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-13T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-681.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.0.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-695.2.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-15T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-717.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-06-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.1.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-08T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Beta-723.3.0\r\n Linux\r\n The Beta channel consists of promoted Alpha releases. Mix a few Beta machines into your production clusters to catch any bugs specific to your hardware or configuration.\r\n CoreOS Beta\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-03T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.4.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-12-04T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-494.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2014-11-23T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.5.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-522.6.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-01-28T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-557.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-02-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-607.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-03-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-633.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-04-14T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-12T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-647.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-05-27T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.0.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-09T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-17T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-681.2.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-06-18T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.1.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-07T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n 2b171e93f07c4903bcad35bda10acf22__CoreOS-Stable-717.3.0\r\n Linux\r\n The Stable channel should be used by production clusters. Versions of CoreOS are battle-tested within the Beta and Alpha channels before being promoted.\r\n CoreOS Stable\r\n 2015-07-10T00:00:00Z\r\n false\r\n coreos-globe-color-lg-100px.png\r\n Medium\r\n CoreOS\r\n coreos-globe-color-lg-45px.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Enterprise\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296354;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Enterprise edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Developer-Apr-2015\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Developer Edition (64-bit) on Windows Server 2012 R2. This image contains the Developer edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Developer\r\n false\r\n BizTalkServer2013_100.png\r\n Microsoft BizTalk Server Group\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Enterprise-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Enterprise Edition (64-bit) on Windows Server 2012 R2. This image contains the Enterprise edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Enterprise\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280328\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 128\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-R2-Standard-Nov-2014\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296356;http://go.microsoft.com/fwlink/?LinkID=131004\r\n Microsoft BizTalk Server 2013 R2 Standard Edition (64-bit) on Windows Server 2012 R2. This image contains the Standard edition of BizTalk Server 2013 R2. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n Microsoft-BizTalk-Server-2013-R2-Standard\r\n 2014-11-03T08:00:00Z\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;West US\r\n 127\r\n 2cdc6229df6344129ee553dd3499f0d3__BizTalk-Server-2013-Standard\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=296355;http://go.microsoft.com/fwlink/?LinkID=131004\r\n This image contains the Standard edition of BizTalk Server 2013. Some BizTalk Server components like accelerators require additional setup before use. Medium is the recommended size for this image.\r\n true\r\n BizTalkServer2013_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=131004\r\n Medium\r\n Microsoft BizTalk Server Group\r\n http://go.microsoft.com/fwlink/?LinkID=280327\r\n BizTalkServer2013_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.6.10-3_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.6\r\n 2014-07-14T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__DreamFactory_1.7.8-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n DreamFactory is the ultimate REST API platform. It enables developers to rapidly mobilize enterprise data by streamlining the task of connecting modern front-end apps with databases and storage systems. DreamFactory handles all of the server-side software and backend integration, so that you can focus on what you do best: building great applications. For more\r\ninformation on this DreamFactory VM packaged by Bitnami visit [our website|https://bitnami.com/stack/dreamfactory|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_DreamFactory|_blank] and [forums|http://community.bitnami.com|_blank]. The DreamFactory VM for Microsoft Azure is developed and maintained by [Bitnami|https://bitnami.com|_blank], the leading provider of application images for the cloud. Default credentials are username: 'user@example.com' / password: 'bitnami'.\r\n DreamFactory 1.7\r\n 2014-09-30T00:00:00Z\r\n false\r\n dreamfactory-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Small\r\n Bitnami\r\n dreamfactory-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.6-4_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-07-14T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 3422a428aaf14529884165693cbb90d3__eXo_Platform_Express_4.0.7-0_-_Ubuntu_14.04\r\n Linux\r\n https://bitnami.com/azure/terms\r\n eXo Platform combines collaboration, content and document management, calendaring and other productivity tools with social features to provide a complete intranet for the enterprise. Rich collaboration features such as wikis, forums, calendars and documents are smartly integrated around activity streams, social networking and workspaces. It is carefully designed to instantly engage users. It is open source and runs within the trusted security of an enterprise platform and is highly customizable to adapt to your organizational needs. This is a 30 day free evaluation of eXo Platform Express, a commercial version of eXo Platform. To continue using the image at the end of the trial period, you must purchase a license directly from eXo Platform (To learn more, visit: [http://www.exoplatform.com|http://docs.exoplatform.com/public/index.jsp?topic=%2FPLF41%2FPLFUserGuide.GettingStarted.TrialEdition.html|_blank]). For more information on eXo Platform visit: [eXo Platform Express by Bitnami|https://bitnami.com/stack/exo-platform|_blank], [wiki|http://wiki.bitnami.com/Applications/Bitnami_eXo_Platform|_blank], [eXo Platform Resource Center|http://www.exoplatform.com/company/en/resource-center|_blank], [Contact for Pricing Details|http://www.exoplatform.com/company/en/company/contact-us|_blank]. This eXo Platform Express VM is built and maintained by [Bitnami|https://bitnami.com|_blank] the leading provider of application images for the cloud. Default credentials are username: 'user' / password: 'bitnami'.\r\n eXo Platform Express 4\r\n 2014-09-30T00:00:00Z\r\n false\r\n exoplatform-azure-100x100.png\r\n https://bitnami.com/privacy\r\n Medium\r\n Bitnami\r\n exoplatform-azure-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131018-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-10-18T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131127-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-11-29T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20131217-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2013-12-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140213-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-01-23T00:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140306-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-05T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140327-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-03-26T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140618-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-06-17T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20140715-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-07-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n 3a50f22b388a4ff7ab41029918570fa6__Windows-Server-2012-Essentials-20141204-enus\r\n Windows\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with the Windows Server Essentials Experience role installed. The new Windows Server Essentials Experience server role on Windows Server 2012 R2 Datacenter includes features, such as Remote Web Access, that were previously available only in Windows Server Essentials. Before creating a virtual machine, you must configure a valid virtual network to use VPN connections. For more information about how to set up Windows Server Essentials Experience, see [here|http://go.microsoft.com/fwlink/?LinkId=322143].\r\n Windows Server Essentials Experience on Windows Server 2012 R2\r\n 2014-12-03T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Medium\r\n Microsoft Windows Server Essentials Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-65-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.5 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150325\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages. Note: Recommended VM size is A2 or larger.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150605\r\n Linux\r\n 6.6\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-66-20150706\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 6.6 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-07-06T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150128\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-01-28T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150325\r\n Linux\r\n 7.0\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-03-25T00:00:00Z\r\n false\r\n CentOS6_100.png\r\n OpenLogic\r\n CentOS6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-70-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.0 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150410\r\n Linux\r\n 7.1\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n false\r\n 2015-04-10T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n 5112500ae3b842c8b9c604889f8753c3__OpenLogic-CentOS-71-20150605\r\n Linux\r\n http://www.openlogic.com/azure/service-agreement/\r\n This distribution of Linux is based on CentOS version 7.1 and is provided by OpenLogic. It contains an installation of the Basic Server packages.\r\n 2015-06-05T06:00:00Z\r\n false\r\n OpenLogic\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.1b-3-20111104\r\n Linux\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2011-11-04T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-8.6.2-52-20141222\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 8.6\r\n 2014-12-22T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.0-15-20141213\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to Cloud SteelHead documentation at https://support.riverbed.com/content/support/software/steelhead/cloud.html\r\n Riverbed SteelHead CX 9.0\r\n 2014-12-13T08:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 38\r\n 63fcd0d5707b41b1b10f2a1d03ccc387__SteelHead-9.0.1-87-20150420\r\n Linux\r\n www.riverbed.com/license\r\n Riverbed SteelHead CX for Microsoft Azure speeds the transfer of data and applications to the cloud from end users over the Internet and WAN. Overcome latency, bandwidth constraints and competition for resources among applications, to speed up migration to the public cloud and accelerate access for users from virtually any location. The SteelHead image will function in a limited fashion until a data-disk is added, and a valid CCX license applied to the instance. Please use admin/password as initial login credentials to the SteelHead. For more details and recommendations please refer to https://support.riverbed.com/bin/support/static/doc/cloud/cloud_sh_2.3_ug/wwhelp/wwhimpl/js/html/wwhelp.htm#href=azure_cloud_sh.7.4.html\r\n Riverbed SteelHead CX 9.0\r\n 2015-04-20T07:00:00Z\r\n false\r\n RVBD_100x100.png\r\n http://www.riverbed.com/legal/privacy-policy/\r\n Small\r\n Riverbed Technology\r\n RVBD_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 80\r\n 810d5f35ce8748c686feabed1344911c__BarracudaNGFirewall-6.1.0-112\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/ngfirewall-azure-eula.html\r\n Note: This appliance is managed via a client application and TCP/807 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-ng.html|_blank] for details. -- The Barracuda NG Firewall is an enterprise-grade next-generation firewall that was purpose-built for efficient deployment and operation within dispersed, highly dynamic, and security-critical network environments providing multilayer security in the cloud. Beyond its powerful network firewall, IPS, and VPN technologies, the Barracuda NG Firewall integrates a comprehensive set of next-generation firewall technologies.\r\n Barracuda NG Firewall 6.1\r\n 2015-06-11T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 50\r\n 810d5f35ce8748c686feabed1344911c__BarracudaWAF-7.9.0.021\r\n Linux\r\n https://cloudvm.cudasvc.com/eula/waf-azure-eula.html\r\n Note: This appliance is administered via a web UI and TCP/8000 needs to be forwarded to do so. See the [deployment README|https://cloudvm.cudasvc.com/azure/deployment-readme-waf.html|_blank] for details. -- The Barracuda Web Application Firewall inspects all inbound web traffic and blocks SQL injections, Cross-Site Scripting, malware uploads & application DDoS, or any other attacks targeted at your web applications. Its built-in load balancing technology also allows your web applications to scale with your business and its Data Loss Prevention (DLP) technology inspects server responses to help keep your proprietary information safe.\r\n Barracuda Web Application Firewall (WAF) 7.9\r\n 2015-04-28T19:00:00Z\r\n false\r\n barracuda-100x100.png\r\n https://techlib.barracuda.com/display/CP/Privacy+Policy\r\n Small\r\n Barracuda Networks, Inc.\r\n barracuda-45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4596.1-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 Preview installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows HPC cluster in Azure. We recommend using a VM size of at least A4. Before creating a virtual machine, you must configure a valid virtual network. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post configuration script described in the Preview release notes. For more information about how to set up an HPC IaaS cluster with this image, [see here|http://go.microsoft.com/fwlink/p/?LinkId=403953|_blank] .\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-08-14T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4650.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-10-31T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4652.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2014-11-14T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4660.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-02-12T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update1-4.3.4665.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 1 installed. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the HPC Pack IaaS deployment script to automatically create a multinode or a single node HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-04-16T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the head node of an HPC Pack cluster. Microsoft SQL Server 2014 Express is also pre-installed. Use this image to create the head node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A4. If you plan to add cluster compute nodes to the head node, the VM must be created in an Azure virtual network. Configure the network before creating the VM. To use the head node, you will need to join the virtual machine to an Active Directory domain and run the post-configuration script described [here|http://go.microsoft.com/fwlink/?LinkId=403953|_blank]. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-CN-Excel-4.4.4864.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 and evaluation version of Microsoft Excel Professional Plus 2013 installed to create the compute node of a Windows high performance computing (HPC) cluster in Azure. We recommend using a VM size of at least A3. It is strongly recommended to use the Azure Resource Manager (ARM) templates or the HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with the HPC Pack images. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=618018|_blank].\r\n HPC Pack 2012 R2 Compute Node with Excel on Windows Server 2012 R2\r\n 2015-07-07T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n Large\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4806.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see here|http://go.microsoft.com/fwlink/?LinkId=530195|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-04-06T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4835.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-05-28T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 96316178b0644ae08bc4e037635ce104__HPC-Pack-2012R2-Update2-Preview-4.4.4858.0-WS2012R2-ENU\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=507756\r\n This image contains the Windows Server 2012 R2 Datacenter operating system with HPC Pack 2012 R2 Update 2 Technical Preview for Head Node installed. It is strongly recommended to use the Update 2 Preview version of HPC Pack IaaS deployment script to automatically create an HPC cluster in Azure with this image. For more information [see Yammer Group|http://go.microsoft.com/fwlink/?LinkId=518150|_blank].\r\n HPC Pack Technical Preview on Windows Server 2012 R2\r\n 2015-06-29T16:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=507755\r\n ExtraLarge\r\n Microsoft Windows Server HPC Pack team\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU5-201503NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-03-27T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU6-201504NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-04-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU7-201505NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-05-13T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-CU8-201506NB.01-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-06-15T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n 9a03679de0e64e0e94fb8d7fd3c72ff1__Dynamics-NAV-2015-RTM-201502NB.02-127GB\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=524939\r\n Microsoft Dynamics NAV is a business solution from Microsoft that is quick to implement, easy to use, and that has the power to support your ambitions for your business. This image contains a pre-configured demonstration installation of Microsoft Dynamics NAV that you can reconfigure for production purposes, or extend to a stunning demonstration environment that is integrated with Office 365 and other Microsoft products in just a few clicks.\r\n Microsoft Dynamics NAV 2015 on Windows Server 2012 R2\r\n 2015-02-24T00:00:00Z\r\n false\r\n DynamicsNAV2013R2_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=394974\r\n Medium\r\n Microsoft Dynamics NAV Group\r\n DynamicsNAV2013R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20140710\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-07-09T00:41:59Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20141209\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2014-12-09T15:26:36Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150506\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-05-08T12:17:30Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 32\r\n 9b7cfe55da0349d5a8316a8cc4741f87__StorSimple-VirtualAppliance-1100-20150617\r\n Windows\r\n Microsoft StorSimple Virtual Appliance 1100\r\n StorSimple Virtual Appliance 1100\r\n false\r\n 2015-06-26T07:49:56Z\r\n false\r\n http://azure.microsoft.com/en-us/support/legal/privacy-statement/\r\n Microsoft Hybrid Cloud Storage Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Win2K8R2SP1-Datacenter-20150726-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2008 R2 is a multi-purpose server designed to increase the reliability and flexibility of your server or private cloud infrastructure, helping you to save time and reduce costs. It provides you with powerful tools to react to business needs with greater control and confidence.\r\n Windows Server 2008 R2 SP1\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2008R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201504.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201505.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-22T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201506.01-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-20150726-en.us-127GB.vhd\r\n Windows\r\n Windows Server 2012 incorporates Microsoft's experience building and operating public clouds, resulting in a dynamic, highly available server platform. It offers a scalable, dynamic and multi-tenant-aware infrastructure that helps securely connect across premises.\r\n Windows Server 2012 Datacenter\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2012_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201504.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-04-17T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201505.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-05-22T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-201506.01-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-06-25T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-R2-20150726-en.us-127GB.vhd\r\n Windows\r\n At the heart of the Microsoft Cloud OS vision, Windows Server 2012 R2 brings Microsoft's experience delivering global-scale cloud services into your infrastructure. It offers enterprise-class performance, flexibility for your applications and excellent economics for your datacenter and hybrid cloud environment. This image includes Windows Server 2012 R2 Update.\r\n Windows Server 2012 R2 Datacenter\r\n 2015-07-26T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n a699494373c04fc0bc8f2bb1389d6106__Windows-Server-Technical-Preview-201505.01-en.us-127GB.vhd\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=544707\r\n At the heart of the Microsoft Cloud Platform, Windows Server brings the breadth and depth of Microsoft’s experience delivering global-scale cloud services to your datacenter infrastructure. Windows Server Technical Preview provides a range of new and enhanced capabilities and features spanning server virtualization, storage, networking, server management and automation, web and application platform, access and information protection, remote desktop infrastructure, and more. By clicking the Create button, I acknowledge that this VHD contains a preview release and should strictly be used for testing purposes and that the [legal terms|http://go.microsoft.com/fwlink/?LinkId=544707|_blank] of Microsoft apply to it. The VHD won’t be serviced or supported for production use and the trial period expires on October 1, 2015.\r\n Windows Server Technical Preview\r\n 2015-05-04T07:00:00Z\r\n false\r\n WindowsServer2012R2_100.png\r\n Standard_D1\r\n Microsoft Windows Server Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-1BOX-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 AOS on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-June15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-06-01T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-AOS-PROD-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Application Object Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 AOS Production on Windows Server 2012 R2\r\n false\r\n 2015-05-18T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-ARA-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Azure Remote Application Service software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Azure Remote Application Service on Windows Server 2012 R2\r\n false\r\n 2015-05-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Client software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-requisites for Dynamics AX 2012 R3 Client on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-CLI-PROD-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Client Production on Windows Server 2012 R2\r\n false\r\n 2015-04-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-April15\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-EP-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Enterprise Portal software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Enterprise Portal on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLECM-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail E-commerce software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail E-commerce on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-RTLESS-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Retail Essentials software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Retail Essentials on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-April15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-20T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX-2012-R3-6.3.1000.309-SQL-OS-Win2012R2-March15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX 2012 R3 Database Server software to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX 2012 R3 Database Server on Windows Server 2012 R2\r\n false\r\n 2015-04-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-AOS-OS-Win2012R2-7July28\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 Applicaion Object Server software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 AOS on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-BI-OS-Win2012R2-7July28\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 business intelligence software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 BI on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-20May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-27T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-07T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July26\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2 Preview\r\n false\r\n 2015-07-26T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-7July28\r\n Windows\r\n True\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Developer on Windows Server 2012 R2\r\n false\r\n 2015-07-28T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n aab47c5acae74e5e8c005b26cff3e828__Dynamics-AX7-Dynamic-Onebox-OS-Win2012R2-May15\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n This image has the pre-requisite software to allow Microsoft Dynamics AX7 software's to be installed when in the presence of other required systems. Depending on the date of the image some pre-requisite software on this image may be expired.\r\n Pre-Requisites for Dynamics AX7 Onebox on Windows Server 2012 R2\r\n false\r\n 2015-05-11T07:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=397363\r\n Large\r\n Microsoft Dynamics AX\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__RdshOnWindowsServer2012R2.20140305.127GB.vhd\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-03-05T23:38:03.7394082Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20140814-1846\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-08-14T20:56:09.553895Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20141111-2335\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2014-11-12T00:23:04.7938861Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150127-2030\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-01-27T21:22:33.5359792Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T21:27:13.0940596Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150429-2200\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-04-30T02:06:52.0524797Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO13P-on-Windows-Server-2012-R2-20150514-2210\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO13P on Windows Server 2012 R2\r\n false\r\n 2015-05-14T23:02:10.1569333Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141121-0016\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-21T01:07:50.1224459Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20141126-2055\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2014-11-27T01:46:00.1951134Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150128-0010\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-01-28T01:17:11.0039487Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150309-1850\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-03-09T19:50:33.6933063Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150428-2230\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-04-28T23:16:04.9724554Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150513-1800\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-05-13T20:37:23.4158594Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-RDSHwO365P-on-Windows-Server-2012-R2-20150610-2039\r\n Windows\r\n \r\n This image can be used by authorized Microsoft Service Providers only.\r\n Windows Server RDSHwO365P on Windows Server 2012 R2\r\n false\r\n 2015-06-11T01:56:15.8997285Z\r\n false\r\n WindowsServer2012R2_100.png\r\n http://www.windowsazure.com/en-us/support/legal/privacy-statement\r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20141111-0723\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2014-11-11T08:00:55.6357644Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150128-0500\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-01-28T05:33:11.6514381Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150309-1815\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-03-09T18:58:44.7766347Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150429-0000\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-04-29T00:35:41.9643255Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150512-0030\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n true\r\n 2015-05-12T14:39:41.1427698Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n ad072bd3082149369c449ba5832401ae__Windows-Server-Remote-Desktop-Session-Host-on-Windows-Server-2012-R2-20150513-0525\r\n Windows\r\n \r\n This image contains the Windows Server 2012 R2 operating system with the Remote Desktop Session Host (RD Session Host) role installed. This image has been pre-configured for Windows Azure. RD Session Host enables a server to host RemoteApp programs or session-based desktops.\r\n Windows Server Remote Desktop Session Host on Windows Server 2012 R2\r\n false\r\n 2015-05-13T06:00:19.2702337Z\r\n false\r\n WindowsServer2012R2_100.png\r\n \r\n Large\r\n Microsoft Windows Server Remote Desktop Group\r\n WindowsServer2012R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20121218-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.10 (amd64 20121218) for Windows Azure. This image is DEPRECATED and was reached its END OF LIFE on 2014-04-18. This image is provided for archival purposes only. Please see [Ubuntu Release Wiki|https://wiki.ubuntu.com/Releases|_blank] for information about successor releases and the Ubuntu life-cycle.\r\n Ubuntu Server 12.10\r\n false\r\n 2012-12-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130225-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130225) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-02-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130325-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130325) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-03-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130415-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130415) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n false\r\n 2013-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130516-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130516) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130527-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130527) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-05-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130603-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130603) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_2-LTS-amd64-server-20130624-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.2 LTS (amd64 20130624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.2 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-06-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130827-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130827) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-08-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20130916.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20130916.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-09-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131003-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131003) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131024-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131024) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-10-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131111-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131111) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131114-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131114) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-11-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20131205-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20131205) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2013-12-05T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_3-LTS-amd64-server-20140130-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.3 LTS (amd64 20140130) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.3 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-01-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140227-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140227) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-02-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140408-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140408) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140428-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140428) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-04-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140514-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140514) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-05-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140606-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140606) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140619-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140619) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140702-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140702) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_4-LTS-amd64-server-20140717-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.4 LTS (amd64 20140717) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.4 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-07-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140806-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140806) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140829.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140829.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-08-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140909.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140909.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140923.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140923.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140924.4-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140924.4) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140925.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140925.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150119) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150127) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-01-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150204-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5 LTS (amd64 20150204) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5 LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-02-04T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150512-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150512) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150615-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150615) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-06-16T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150728) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150730.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150730.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5-LTS-amd64-server-20150731.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5-LTS (amd64 20150731.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5-LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150401-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150401) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-12_04_5_LTS-amd64-server-20150413-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 12.04.5.LTS (amd64 20150413) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 12.04.5.LTS will be available until 2017-04-26. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 12.04 LTS\r\n true\r\n 2015-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-14T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140414.2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140414.2) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140416.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140416.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-04-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140528-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140528) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-05-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140606.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140606.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140618.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140618.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-06-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04-LTS-amd64-server-20140724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04 LTS (amd64 20140724) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140909-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140909) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140924-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140924) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140926-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140926) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20140927-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20140927) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-09-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20141125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20141125) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2014-11-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_1-LTS-amd64-server-20150123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.1 LTS (amd64 20150123) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.1 LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-01-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150506-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150506) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-05-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150610-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150610) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2-LTS-amd64-server-20150706-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2-LTS (amd64 20150706) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2-LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-14_04_2_LTS-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 14.04.2.LTS (amd64 20150309) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 14.04.2.LTS will be available until 2019-04-17. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 14.04 LTS\r\n true\r\n 2015-03-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-SSH-Docker-amd64-edge-201507081917-119-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507081917. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-20150423-39-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150423. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507080203-118-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507080203. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507092358-121-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507092358. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507102001-122-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507102001. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507102212-123-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507102212. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507221609-125-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507221609. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507221910-126-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507221910. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507222241-127-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507222241. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507231619-128-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507231619. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507232107-131-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507232107. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15.04-Snappy-core-amd64-edge-201507241850-132-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201507241850. This is a developer build of Ubuntu Snappy 15.04. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core 15.04 edge\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150421.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150421.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-30. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150422-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150422) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-04-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150513.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150513.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-13T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150528.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150528.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-05-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150611-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150611) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150616.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150616.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150707) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150722) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150728) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_04-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.04 (amd64 20150729) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.04 will be available until 2016-01-23. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.04\r\n true\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150520.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.10 (amd64 20150520.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-05-20T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150624-alpha1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n MILESTONE RELEASE: This is a milestone release and is considered experimental. This build is unsupported and is for development and preview reference only. Ubuntu Server 15.10 (amd64 20150624) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-06-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-15_10-amd64-server-20150728.1-alpha2-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Server 15.10 (amd64 20150728.1) for Microsoft Azure. Ubuntu Server is the world's most popular Linux for cloud environments. Updates and patches for Ubuntu 15.10 will be available until 2016-07-29. Ubuntu Server is the perfect platform for all workloads from web applications to NoSQL databases and Hadoop. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank].\r\n Ubuntu Server 15.10\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-20150526-57-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 20150526. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-05-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506102134-69-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506102134. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-10T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506110559-70-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506110559. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-11T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506120856-71-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506120856. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-12T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506171326-77-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506171326. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-17T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506180039-80-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506180039. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-18T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu-rolling-Snappy-core-amd64-edge-201506190835-82-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n Ubuntu Core edge 201506190835. This is a developer build of Ubuntu Snappy rolling. For more information see [Ubuntu Cloud|http://www.ubuntu.com/snappy|_blank].\r\n Ubuntu Core rolling edge\r\n false\r\n 2015-06-19T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150707.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150722.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150730.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-precise-12_04_5-LTS-amd64-server-20150731.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731.1 of Ubuntu Server 12.04.5-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 12.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150708-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150708 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-08T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150721-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150721 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-21T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150724 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150727-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150727 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-27T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150729 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-trusty-14_04_2-LTS-amd64-server-20150803-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150803 of Ubuntu Server 14.04.2-LTS DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 14.04 LTS DAILY\r\n false\r\n 2015-08-03T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150630-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150630 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-06-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150707-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150707 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-07T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150709-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150709 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-09T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150715-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150715 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-15T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150728-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-28T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150729-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150729 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150731-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150731 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-07-31T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-vivid-15_04-amd64-server-20150802-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150802 of Ubuntu Server 15.04 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.04 DAILY\r\n false\r\n 2015-08-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150722-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150722 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-22T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150723-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150723 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150723.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150723.1 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-23T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150724-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150724 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-24T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150725-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150725 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-25T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150726-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150726 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-26T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150728.1-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150728.1 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-29T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150730-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150730 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-07-30T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150801-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150801 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-08-01T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b39f27a8b8c64d52b05eac6a62ebad85__Ubuntu_DAILY_BUILD-wily-15_10-amd64-server-20150802-en-us-30GB\r\n Linux\r\n http://www.ubuntu.com/project/about-ubuntu/licensing;http://www.ubuntu.com/aboutus/privacypolicy\r\n DAILY BUILD 20150802 of Ubuntu Server 15.10 DAILY (amd64) for Microsoft Azure. Daily builds are up-to-date builds of the regular release images for Ubuntu Server. While every effort is made to make sure that these are production quality, these images come with no warranty. In the event of a support issue, you may be asked to update to an official released build. For more information see [Ubuntu Cloud|http://www.ubuntu.com/cloud|_blank] and [using Juju to deploy your workloads|http://juju.ubuntu.com|_blank]. \r\n Ubuntu Server 15.10 DAILY\r\n false\r\n 2015-08-02T00:00:00Z\r\n false\r\n Ubuntu-cof-100.png\r\n http://www.ubuntu.com/aboutus/privacypolicy\r\n Canonical\r\n Ubuntu-cof-45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.1-20141216-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n openSUSE 13.1 brings updated desktop environments and software, a lot of polishing, a brand new KDE theme, complete systemd integration and many other features. Customization of these images can be done at http://susestudio.com\r\n openSUSE 13.1\r\n 2015-01-05T08:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-20141216-x86-64\r\n Linux\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customization of this image can be done at [https://susestudio.com|https://susestudio.com]\r\n openSUSE 13.2\r\n 2014-12-16T00:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-opensuse-13.2-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Stable, innovative, and fun! A year's worth of continuous improvement in tools and procedures, and countless hours developing, packaging, and testing have produced a stable release providing the best of Free and Open Source software with our special green touch. Customize this image with SUSE Studio ( [https://susestudio.com|https://susestudio.com] ).\r\n openSUSE 13.2\r\n 2015-05-12T07:00:00Z\r\n false\r\n OpenSuse12_100.png\r\n SUSE\r\n OpenSuse12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-01-27T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP3 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sap-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-sapcal-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n The SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library image is the base image for SAP's Cloud Appliance library. It will be used automatically when deploying an SAP Cloud Appliance Library instance and has the same features as the native SLES image, however customized to fit SAP's CAL needs. For further description and usage guide lines please refer to the description of the SUSE Linux Enterprise image.\r\n SUSE Linux Enterprise Server 11 SP3 for SAP Cloud Appliance Library\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150127\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-01-27T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp3-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP3\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp4-priority-v20150714\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 11 SP4 (Premium Image)\r\n 2015-07-14T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-11-sp4-v20150714\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 11 SP4\r\n 2015-07-14T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-01-05T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-priority-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The image supports the low latency network interface option available for select instance types. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 - HPC (Premium Image)\r\n 2015-07-08T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-hpc-v20150708\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This image supports the low latency network interface option available for select instance types.\r\n SUSE Linux Enterprise Server 12 HPC\r\n 2015-07-08T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-20150105-x86-64\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-01-05T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server Premium Image with PRIORITY Support: SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-02-13T08:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center. The Premium Image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. VMs created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure.\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-03-30T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-priority-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center. This Premium image with PRIORITY support includes updates, patches, and support through 24x7 web, email, chat and phone from SUSE. Virtual machines created from this image incur per-hour support fees, in addition to Azure platform fees. An Azure support plan is required (developer or above). Support incidents are initiated through Azure Support ( [http://azure.microsoft.com/en-us/support/options/|http://azure.microsoft.com/en-us/support/options/] ).\r\n SUSE Linux Enterprise Server 12 (Premium Image)\r\n 2015-05-12T07:00:00Z\r\n true\r\n Suse11_100.png\r\n SUSE\r\n http://go.microsoft.com/fwlink/?LinkId=299677\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150213\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n SUSE Linux Enterprise Server is a highly reliable, scalable and secure server operating system, built to power physical, virtual and cloud-based mission-critical workloads. With this affordable, interoperable and manageable open source foundation, enterprises can cost-effectively deliver core business services, enable secure networks and easily manage their heterogeneous IT resources, maximizing efficiency and value. Customization of images can be done at http://susestudio.com.\r\n SUSE Linux Enterprise Server 12\r\n 2015-02-13T08:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150330\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported enterprise Linux distribution available today on Microsoft Azure, and the only one supported with tools like SUSE Studio for quick and easy image creation, and SUSE Manager for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-03-30T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n b4590d9e3ed742e4a1d46e5424aa335e__suse-sles-12-v20150512\r\n Linux\r\n https://www.suse.com/licensing/eula/\r\n Confidently run your production workloads on SUSE Linux Enterprise Server on Microsoft Azure, knowing that your service levels are guaranteed, and that help from SUSE and Microsoft engineers, if you need it, is just a phone call away. SUSE Linux Enterprise Server is the only supported Enterprise Linux distribution available on Microsoft Azure, and the only one supported with tools like SUSE Studio ( [https://susestudio.com|https://susestudio.com] ) for quick and easy image creation, and SUSE Manager ( [https://www.suse.com/products/suse-manager/|https://www.suse.com/products/suse-manager/] ) for monitoring and managing your Linux virtual machines using Microsoft Systems Center.\r\n SUSE Linux Enterprise Server 12\r\n 2015-05-12T07:00:00Z\r\n false\r\n Suse11_100.png\r\n SUSE\r\n Suse11_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-iis75-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 7.5 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-sqlsvr2012-v5.8.8.15\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2013-01-05T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-08-28T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-SP1-x64-v5.8.8.11\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-07T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with IIS 7.5 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-iis7.5-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v13.5.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-19T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.4.3.1\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-06-06T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with MS SQL Server 2008R2 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-sqlsvr2k8r2ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2008R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2008R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-iis8-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with IIS 8 and RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Standard and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with MS SQL Server 2012 Enterprise and RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-sqlsvr2012ent-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n true\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 31\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.4.12.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8\r\n RightScale Windows v13\r\n false\r\n 2013-05-30T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v13.5\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink v5.8\r\n RightScale Windows v13\r\n false\r\n 2013-08-15T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.9\r\n RightScale Windows v14\r\n false\r\n 2014-03-24T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012-x64-v5.8.8.12\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012 with RightLink 5.8.\r\n RightScale Windows v13\r\n false\r\n 2012-12-12T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n bd507d3a70934695bc2128e3e5a255ba__RightImage-Windows-2012R2-x64-v14.2\r\n Windows\r\n http://support.rightscale.com/12-Guides/RightLink/RightLink_End_User_License_Agreeement\r\n Windows 2012R2 with RightLink 6.2\r\n RightScale Windows v14\r\n false\r\n 2015-01-16T00:00:00Z\r\n false\r\n http://www.rightscale.com/privacy_policy.php\r\n RightScale with Windows Server\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 10\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-12-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 6 brings the latest Linux innovations to market, delivering extreme performance, advanced scalability, and reliability for enterprise applications and systems. More information can be found at http://www.oracle.com/linux.\r\n Oracle Linux 6.4.0.0.0\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-6-E-Database-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Enterprise Edition is a next-generation database designed for the cloud, providing a new multitenant architecture on top of a fast, scalable, reliable, and secure database platform. For more information, go to http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Enterprise Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-7\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Linux 7.0.0.0 delivers extreme performance, advanced scalability, and reliability for enterprise applications and systems. Optimized for enterprise workloads, Oracle Linux is the only operating system to offer zero-downtime updates.\r\n Oracle Linux 7.0.0.0.0\r\n 2014-12-18T06:00:00Z\r\n false\r\n OracleLinux6_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleLinux6_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 40\r\n c290a6b031d841e09f2da759bbabe71f__Oracle-Linux-Database-Standard-2014\r\n Linux\r\n http://www.oracle.com/technetwork/licenses/oracle-license-2016066.html\r\n Oracle Database 12c Standard Edition is an affordable, full-featured data management solution that is ideal for midsize companies. More information can be found at http://www.oracle.com/database.\r\n Oracle Database 12.1.0.1 Standard Edition\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleDatabase12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleDatabase12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n c290a6b031d841e09f2da759bbabe71f__WebLogic-Linux-6-12c-2014\r\n Linux\r\n Oracle WebLogic Server 12.1.2 on Oracle Linux 6.4.0.0.0\r\n Oracle WebLogic Server 12c Enterprise Edition is a leading Java EE application server, delivering next-generation applications on a mission-critical cloud platform, with native cloud management, and integrated tools. More information can be found at http://www.oracle.com/weblogicserver.\r\n Oracle Weblogic\r\n 2014-12-22T06:00:00Z\r\n false\r\n OracleWeblogic12_100.png\r\n http://www.oracle.com/us/legal/privacy/privacy-policy-078584.html\r\n Oracle\r\n OracleWeblogic12_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 128\r\n c6e0f177abd8496e934234bd27f46c5d__SharePoint-2013-Trial-7-9-2015\r\n Windows\r\n http://www.microsoft.com/en-us/download/details.aspx?id=38417\r\n Microsoft SharePoint Server 2013 Trial on Windows Server 2012 Datacenter. Virtual Machines created with this trial image will expire on January 5, 2016. This image includes a complete installation of SharePoint Server 2013. Some SharePoint Server 2013 components require additional setup and configuration. You can set-up Active Directory and SQL Server required for your SharePoint farm by provisioning additional virtual machines. Minimum recommended virtual machine size for this image is Large. To evaluate the advanced capabilities of SharePoint Server 2013, we recommend that you use a virtual machine size of A4.\r\n Windows Server Datacenter 2012 Datacenter\r\n 2015-07-09T07:00:00Z\r\n false\r\n Large\r\n Microsoft SharePoint Group\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_2_3_1-amd64-server-20140925.1-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.2\r\n 2014-10-23T01:45:25.1330063Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 30\r\n de89c2ed05c748f5aded3ddc75fdcce4__PuppetEnterpriseMaster-3_7_2-amd64-server-20150309-en-us-30GB\r\n Linux\r\n http://puppetlabs.com/solutions/microsoft#Eula\r\n This image includes a pre-configured Puppet Master with the Ubuntu Linux distribution for easy deployment of Puppet Enterprise. To set up a Puppet Enterprise environment, please refer to the Getting Started Guide for Deploying a Puppet Master with Windows Azure at http://puppetlabs.com/solutions/microsoft NOTE: The cloud service and virtual machine names must be in lower case to properly provision a Puppet Master.\r\n Puppet Enterprise 3.7\r\n 2015-03-19T07:12:15.3948309Z\r\n false\r\n PuppetLabs_100x100.png\r\n http://puppetlabs.com/solutions/microsoft\r\n Medium\r\n Puppet Labs\r\n PuppetLabs_45x45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Enterprise-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__Microsoft-SQL-Server-2008R2SP2-Standard-CY13SU04-SQL2008-SP2-10.50.4021.0\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-04-16T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Enterprise-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Standard-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP2-10.50.4319.0-Web-ENU-Win2008R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-07-18T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Ent-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Enterprise on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Std-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Standard on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy14su09\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2014-09-26T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2-SP3-10.50.6000.34-Web-ENU-Win2008R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP3 Web on Windows Server 2008 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Enterprise-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285681\r\n We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Enterprise on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Standard-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285685\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Standard on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n Sqlserver2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-07-29T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU10\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database.\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-10-22T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY13SU12\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of medium or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2013-12-23T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2008R2SP2-GDR-10.50.4021.0-Web-ENU-Win2K8R2-CY14SU02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285686\r\n We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2008 R2 SP2 Web on Windows Server 2008 R2\r\n 2014-02-21T00:00:00Z\r\n true\r\n SqlServer2008R2_100.png\r\n http://msdn.microsoft.com/library/ms143384(v=sql.105).aspx\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2008R2_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Ent-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Std-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-Web-ENU-Win2012-cy14su08\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2014-08-31T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2014-12-01T08:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n This image contains the full version of SQL Server. Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=285691\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su02\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-03-10T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=286424\r\n Some SQL Server components require additional setup and configuration before use. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2012 SP2 Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2012_100.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2012_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Ent-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Std-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-Web-ENU-Win2012R2-cy15su04\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2015-04-15T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DataWarehousing-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-06-27T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Enterprise-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Standard-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-Web-ENU-Win2012R2-cy14su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-06-09T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Ent-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Std-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-Web-ENU-Win2012R2-cy14su11\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-11-15T08:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Std-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank]\r\n SQL Server 2014 SP1 Standard on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-SP1-12.0.4100.1-Web-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Web on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Medium\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-Ent-ENU-Win2012R2-cy15su05\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 SP1 Enterprise on Windows Server 2012 R2\r\n 2015-05-15T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Large\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-DataWarehousing-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image is optimized for data warehousing workloads with data sizes up to 1TB using clustered columnstore indexes. After the portal deployment completes, you need to attach disks to the virtual machine. To do this, connect to the VM and follow the on-screen instructions. Before using the VM, review the recommendations [here|http://msdn.microsoft.com/library/dn387396.aspx|_blank]. For best performance, we recommend using a VM size of A7. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM DataWarehousing on Windows Server 2012 R2\r\n false\r\n 2014-04-01T07:00:00Z\r\n true\r\n SQLServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A7\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-ENTCORE-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A3 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Enterprise on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A3\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Standard-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512496\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Standard on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271257\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014RTM-12.0.2000.8-Web-ENU-WS2012R2-AprilGA\r\n Windows\r\n http://go.microsoft.com/fwlink/?LinkID=512495\r\n This image contains the full version of SQL Server. We recommend that you use a virtual machine size of A2 or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2014 RTM Web on Windows Server 2012 R2\r\n 2014-04-01T07:00:00Z\r\n true\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n A2\r\n Microsoft SQL Server Group\r\n http://go.microsoft.com/fwlink/?LinkId=271258\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.200.172-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-05-27T07:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2-13.0.407.1-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n [Known Issues in this Release.|http://go.microsoft.com/fwlink/?LinkID=398124|_blank]. Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQLServer2016CTP2-13.0.407.1-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n 2015-07-27T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n \r\n Public\r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 127\r\n fb83b3509582419d99629ce476bcb5c8__SQLServer2016CTP2.1-13.0.300.44-Evaluation-ENU-SQLEVAL.ENU.Mar-WS2012R2\r\n Windows\r\n http://download.microsoft.com/download/6/6/9/66971884-0E4D-476A-981B-D139F9D9420F/2016CTP2/1033/license_Eval.rtf\r\n Virtual Machines created by using this SQL Server Evaluation Edition will expire on June 30th, 2016. This image contains the full version of SQL Server. Some SQL Server 2016 components require additional setup and configuration before use. We recommend that you use a virtual machine size of large or higher. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n SQL Server 2016 CTP2 Evaluation on Windows Server 2012 R2\r\n 2015-06-19T00:00:00Z\r\n false\r\n SqlServer2014_100.png\r\n http://go.microsoft.com/fwlink/?LinkID=398120\r\n Large\r\n Microsoft SQL Server Group\r\n SqlServer2014_45.png\r\n Standard_LRS\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "617313"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "28bc4ffda560c1618eebc0435c1d9a8c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:34 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/28bc4ffda560c1618eebc0435c1d9a8c",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzI4YmM0ZmZkYTU2MGMxNjE4ZWViYzA0MzVjMWQ5YThj",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 28bc4ffd-a560-c161-8eeb-c0435c1d9a8c\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "eeb35d3d8dddc99eb1a77fcb1c7a56ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/vmimages",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy92bWltYWdlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n 1acf693f34c74e86a50be61cb631ddfe__ClouderaGolden-202406-699696\r\n \r\n Public\r\n Single click deployment of CDH 5.1 Evaluation for MR, HDFS and HIVE\r\n \r\n ClouderaGolden-202406-699696-os-2014-10-06\r\n ReadWrite\r\n Specialized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n CDH 5.1 Evaluation\r\n Standard_D14\r\n false\r\n http://www.gnu.org/copyleft/gpl.html\r\n http://www.cloudera.com/content/cloudera/en/privacy-policy.html\r\n Cloudera\r\n 2014-10-27T04:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.06-datadisk-0-2015-07-28\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.08\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-os-2015-03-24\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.08-datadisk-0-2015-03-24\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-20T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.02\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-os-2015-07-03\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.02-datadisk-0-2015-07-03\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-03T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.06-os-2015-07-28\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.06-datadisk-0-2015-07-28\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;East US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-28T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-16d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 16 data disks\r\n \r\n hdp215-16d-image-os-2014-10-16\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n hdp215-16d-image-datadisk-0-2014-10-16\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-1-2014-10-16\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-2-2014-10-16\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-3-2014-10-16\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-4-2014-10-16\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-5-2014-10-16\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-6-2014-10-16\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-7-2014-10-16\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-8-2014-10-16\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-9-2014-10-16\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-10-2014-10-16\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-11-2014-10-16\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-12-2014-10-16\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-13-2014-10-16\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-14-2014-10-16\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n hdp215-16d-image-datadisk-15-2014-10-16\r\n None\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hdp215-8d-vm-image\r\n \r\n Public\r\n HDP 2.1.5 with 8 data disks\r\n \r\n hdp215-8d-image-os-2014-10-08-1\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n \r\n hdp215-8d-image-datadisk-0-2014-10-08-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-1-2014-10-08-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-2-2014-10-08-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-3-2014-10-08-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-4-2014-10-08-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-5-2014-10-08-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-6-2014-10-08-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n hdp215-8d-image-datadisk-7-2014-10-08-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_2.2.4.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2\r\n \r\n hwx_sandbox_hdp_2.2.4.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2\r\n \r\n hw_sandbox_hdp_2.2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v2\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v2\r\n \r\n hw_sandbox_hdp_2.2.4.2v2\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v3\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v3\r\n \r\n hw_sandbox_hdp_2.2.4.2v3\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v4\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v4\r\n \r\n hw_sandbox_hdp_2.2.4.2v4\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.2.4.2v5\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.2.4-2v5\r\n \r\n hw_sandbox_hdp_2.2.4.2v5\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n d570a118449e48fdbe814fb54b36b60e__hwx_sandbox_hdp_2.3v7\r\n \r\n Public\r\n Hortonworks Sandbox with HDP 2.3\r\n \r\n hw_sandbox_hdp_2.3v7\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 49\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n false\r\n Hortonworks\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-node-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-node-20141010-os-2014-10-22\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard\r\n \r\n \r\n \r\n dse-node-20141010-datadisk-0-2014-10-22\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-1-2014-10-22\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-2-2014-10-22\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n dse-node-20141010-datadisk-3-2014-10-22\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n eed8e6be226e414095ba1fbf8fc3931f__dse-opscenter-20141010\r\n \r\n Public\r\n DataStax takes the latest version of open source Apache Cassandra, certifies and prepares it for bullet-proof enterprise deployment. We deliver commercial confidence in the form of training and support, development tools and drivers, and professional implementation services to ensure that you have everything you need to successfully deploy Cassandra in support of your mainstream business applications.\r\n \r\n dse-opscenter-20141010-os-2014-10-11\r\n ReadWrite\r\n Generalized\r\n Linux\r\n 30\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n DataStax Enterprise\r\n A7\r\n false\r\n http://www.datastax.com/developer-license-terms\r\n http://www.datastax.com/privacy\r\n DataStax\r\n 2014-10-27T05:00:00Z\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-DW-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5537.0-OLTP-ENU-Win2012-cy14su09\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5548.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2014-12-01T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su02\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-03-10T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 1.25TB for A7, 2TB for A8 and A9, respectively, using rowstore indexes.\r\n \r\n SQL2012SP2DWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2DWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2012-SP2-11.0.5569.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2012SP2OLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2012SP2OLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2012 SP2 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=285687\r\n SqlServer2012_100.png\r\n SqlServer2012_45.png\r\n http://www.microsoft.com/en-us/download/details.aspx?id=29067\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-DW-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2048.0-OLTP-ENU-Win2012R2-cy15su04\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-2\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-2\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-2\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-2\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-2\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-2\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-2\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-2\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-2\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-2\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-2\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-2\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-2\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-2\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-04-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-DW-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13,D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2361.0-OLTP-ENU-Win2012R2-cy14su08\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard_LRS\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10\r\n None\r\n 1\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11\r\n None\r\n 2\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12\r\n None\r\n 3\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13\r\n None\r\n 4\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14\r\n None\r\n 5\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15\r\n None\r\n 6\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2\r\n None\r\n 7\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3\r\n None\r\n 8\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4\r\n None\r\n 9\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5\r\n None\r\n 10\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6\r\n None\r\n 11\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7\r\n None\r\n 12\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8\r\n None\r\n 13\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9\r\n None\r\n 14\r\n 1023\r\n Standard_LRS\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-09-11T07:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-DW-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL2014RTMDWENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMDWENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-2014-RTM-12.0.2430.0-OLTP-ENU-Win2012R2-cy14su11\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL2014RTMOLTPENUWin2012R2-1\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk1-1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk10-1\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk11-1\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk12-1\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk13-1\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk14-1\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk15-1\r\n None\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk2-1\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk3-1\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk4-1\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk5-1\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk6-1\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk7-1\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk8-1\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL2014RTMOLTPENUWin2012R2.IaaSVmImageDisk9-1\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n English\r\n SQL Server 2014 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2014-11-15T00:00:00Z\r\n true\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-DW-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for data warehousing workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured. It has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].This image supports data sizes of up to 2TB for A7, 4TB for A8 and 6TB for A9, respectively, using clustered columnstore indexes.\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLDW.ENU.Mar-WS2012R2-127gb.04.22.15.11.16.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for DataWarehousing Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL-Server-20140SP1-12.0.4100.1-OLTP-ENU-Win2012R2-cy15su05\r\n \r\n Public\r\n This Enterprise Edition image is optimized for OLTP workloads and is intended for VM sizes including A4, A7, A8, A9, D4, D13, D14, G3, G4 and G5. Once deployed, the VM comes with Windows Storage Spaces pre-configured.This image has been pre-configured for Windows Azure, including enabling CEIP which can be disabled, for more info see [here|http://msdn.microsoft.com/en-us/library/windowsazure/dn133151.aspx#database|_blank].\r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk1\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk2\r\n None\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk3\r\n None\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk4\r\n None\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk5\r\n None\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk6\r\n None\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk8\r\n None\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk9\r\n None\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk10\r\n None\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk11\r\n None\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk12\r\n None\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-PCU-Main-12.0.4100.1-SQLOLTP.ENU.Mar-WS2012R2-127gb.04.22.15.11.19.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n SQL Server 2014 SP1 Enterprise Optimized for Transactional Workloads on Windows Server 2012 R2\r\n A7\r\n true\r\n http://go.microsoft.com/fwlink/?LinkID=512497\r\n SqlServer2014_100.png\r\n SqlServer2014_45.png\r\n http://go.microsoft.com/fwlink/?LinkID=282418\r\n Microsoft SQL Server Group\r\n 2015-05-15T00:00:00Z\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special16\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk13\r\n None\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk14\r\n None\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.46.IaaSVmImageDisk15\r\n None\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n fb83b3509582419d99629ce476bcb5c8__SQL2014RTMonWIN2012R2Special31\r\n \r\n Public\r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 127\r\n Standard\r\n \r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk1\r\n ReadOnly\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk2\r\n ReadOnly\r\n 1\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk3\r\n ReadOnly\r\n 2\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk4\r\n ReadOnly\r\n 3\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk5\r\n ReadOnly\r\n 4\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk6\r\n ReadOnly\r\n 5\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk7\r\n ReadOnly\r\n 6\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk8\r\n ReadOnly\r\n 7\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk9\r\n ReadOnly\r\n 8\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk10\r\n ReadOnly\r\n 9\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk11\r\n ReadOnly\r\n 10\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk12\r\n ReadOnly\r\n 11\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk13\r\n ReadOnly\r\n 12\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk14\r\n ReadOnly\r\n 13\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk15\r\n ReadOnly\r\n 14\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk16\r\n ReadOnly\r\n 15\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk17\r\n ReadOnly\r\n 16\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk18\r\n ReadOnly\r\n 17\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk19\r\n ReadOnly\r\n 18\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk20\r\n ReadOnly\r\n 19\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk21\r\n ReadOnly\r\n 20\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk22\r\n ReadOnly\r\n 21\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk23\r\n ReadOnly\r\n 22\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk24\r\n ReadOnly\r\n 23\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk25\r\n ReadOnly\r\n 24\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk26\r\n ReadOnly\r\n 25\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk27\r\n ReadOnly\r\n 26\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk28\r\n ReadOnly\r\n 27\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk29\r\n None\r\n 28\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk30\r\n None\r\n 29\r\n 1023\r\n Standard\r\n \r\n \r\n SQL14-RTM-QFE-CU-12.0.2480.0-SQLDW.ENU.Mar-WS2012R2-127gb.04.30.15.11.47.IaaSVmImageDisk31\r\n None\r\n 30\r\n 1023\r\n Standard\r\n \r\n \r\n East Asia;Southeast Asia;North Europe;West Europe;Central US;East US;East US 2;South Central US;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n true\r\n Microsoft SQL Server Group\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=271259\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.03-os-2015-07-21\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-21T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-Non-VPN-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server Non-VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.03\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.03-os-2015-07-21\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-21T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Config-Server-VPN-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server VPN\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Configuration Server acts as the centralized management server for disaster recovery management operations in the Microsoft Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Configuration-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Configuration Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.04-datadisk-0-2015-07-22\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Master Target Server is used as a repository and for retention of replication traffic from Windows source virtual or physical servers in the Azure Site Recovery scenario of setting up recovery from an on-premises VMware/physical server site to Microsoft Azure.\r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Master-Target-Server-201507.05-datadisk-0-2015-07-23\r\n None\r\n 0\r\n 1023\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Master Target Server\r\n ExtraLarge\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201503.06\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-os-2015-03-18\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201503.06-datadisk-0-2015-03-18\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-03-18T04:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.04\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.04-os-2015-07-22\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.04-datadisk-0-2015-07-22\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-22T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n \r\n d4a65b493c36471ba82b42d53fbd8063__Microsoft-Azure-Site-Recovery-Process-Server-201507.05\r\n \r\n Public\r\n The Microsoft Azure Site Recovery Process Server is used for caching, compression, and encryption of replication traffic in the Microsoft Azure Site Recovery scenario of setting up failback of virtual machines from Microsoft Azure back to an on-premises VMware site.\r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.05-os-2015-07-23\r\n ReadWrite\r\n Generalized\r\n Windows\r\n 128\r\n Standard\r\n \r\n \r\n \r\n Microsoft-Azure-Site-Recovery-Process-Server-201507.05-datadisk-0-2015-07-23\r\n None\r\n 0\r\n 601\r\n Standard\r\n \r\n \r\n Southeast Asia;West US\r\n 1801-01-01T00:00:00Z\r\n 1801-01-01T00:00:00Z\r\n Microsoft Azure Site Recovery Process Server\r\n Large\r\n false\r\n http://go.microsoft.com/fwlink/?LinkId=525741\r\n http://go.microsoft.com/fwlink/?LinkId=512132\r\n Microsoft Azure Site Recovery group\r\n 2015-07-23T09:30:00Z\r\n false\r\n VMImageReadyForUse\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "160031"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f52f3da64bb0cf32be2e94c564a248c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/f52f3da64bb0cf32be2e94c564a248c8",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2Y1MmYzZGE2NGJiMGNmMzJiZTJlOTRjNTY0YTI0OGM4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n f52f3da6-4bb0-cf32-be2e-94c564a248c8\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "56d8f6826a09c180bdd7fb8eb8ef9515"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk6645\r\n \r\n \r\n East US\r\n Standard_GRS\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "358"
+ ],
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "7e0602d94ed7c518bc1c9a8b7f87a012"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:37 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/storage/pstestonesdk6645"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7e0602d94ed7c518bc1c9a8b7f87a012",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzdlMDYwMmQ5NGVkN2M1MThiYzFjOWE4YjdmODdhMDEy",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7e0602d9-4ed7-c518-bc1c-9a8b7f87a012\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "f9766f18ca75c7acb704d12e79656a59"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:50:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7e0602d94ed7c518bc1c9a8b7f87a012",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzdlMDYwMmQ5NGVkN2M1MThiYzFjOWE4YjdmODdhMDEy",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7e0602d9-4ed7-c518-bc1c-9a8b7f87a012\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "9af07ec9da4ac8f9865ccc05c21e0731"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n pstestonesdk2805\r\n \r\n East US\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "217"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a2f01c74f72fce57964d6e6aa0e9106c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:10 GMT"
+ ],
+ "Location": [
+ "https://management.core.windows.net/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/compute/pstestonesdk2805"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a2f01c74f72fce57964d6e6aa0e9106c",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2EyZjAxYzc0ZjcyZmNlNTc5NjRkNmU2YWEwZTkxMDZj",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a2f01c74-f72f-ce57-964d-6e6aa0e9106c\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "6d9acd1abbbdc490b9a35416152f7830"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:10 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6b614ee28e03c48c8ae53ef121e06738"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "29cc112118b8ced2974a01d5414cff97"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1bd9e1ceabec59ba20b0c5b16ee42e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a292801fcc6cb34a3830fbe730b278d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:27 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Production\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:57:59Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3e068113d2bc20fadc67046cbfcae4c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:59 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Production\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:57:59Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e1a2b278a7fdc2f388ed0010f526fa2f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Production\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:57:59Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "96c33496e6fac35ba0d863ba2d696ef2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Production\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:04:15Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e654dbd10d4fca5faeed050c66660edf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:14 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Production\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:04:15Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98f458a5e776c9338a83a895b9d65704"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:04:50Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "49dd26f74270c7eb8c940f0dba4ccd8e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:50 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:04:50Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4773"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1f3d4ded458dcdb4ad031e39e093c4df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:07:01Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4985"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2ed4b6ac792ccdf99636d21332fc57a4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9u",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:09:39Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4985"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e77d88e5c09c7918fab16e0455c908a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b27c73536d5c8248f9ef17799b43403"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://1c6110601e1e49dcbc0df2c7be65b4e0.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n StoppedVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Stopped\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n StoppedVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Stopped\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:52:03Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4257"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae2aec4c9e1dcd4998d01d3138cb0025"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://1c6110601e1e49dcbc0df2c7be65b4e0.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:57:25Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4786"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fb8ce66945efc04eb9b9dcdc062394a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:24 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://1c6110601e1e49dcbc0df2c7be65b4e0.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T00:57:25Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4786"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64294e5c6a43c8ab8aec97bc762da0ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:27 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bd1521a29466c4ffb5ca569f059aa62a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:59 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n ResourceNotFound
\r\n No deployments were found.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "191"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "afc3c1395755ccea9e9f30d796cca2f4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Staging\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n CreatingVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Stopped\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n StoppedVM\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Stopped\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T00:59:29Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4261"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4bc56e1db1a3c12abc3b094805c8d8ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Staging\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n RunningTransitioning\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:04:10Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4804"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb380461df91caeb9a4b442fc8206848"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:13 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Staging\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n RunningTransitioning\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:04:10Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4804"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "070723c624f2c6429314757816841241"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:04:52Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4791"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8444aae0525cca9995176b796d4560fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:04:52Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4791"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35dd71f26f90c4e69f6cb2b783097fb9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:06:59Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4791"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5aba49ff5c0c606bac32ecc8224ca7d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:10:14Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4997"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5aa41d290679c231b480e67a85c1251b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:14 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NS9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n \r\n 4Q9Owr4PjT4XMjR+geTxRWFJPUEKFTcyfNkRQegjBFEjevDh0+oUVf06aRXnTzDNiieC9C6BffDM2+Boy2WNfQ==\r\n TSKaINpILZlYCYYSy1aiAKUJr/dJW0zudqCg00SNRSwhNSNRfsl4Hnawbggx5JVF/vzk/Std6KkISGhpiay6LQ==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "5e516ceb6258c1788dcbe270b555cd6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NS9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n \r\n 4Q9Owr4PjT4XMjR+geTxRWFJPUEKFTcyfNkRQegjBFEjevDh0+oUVf06aRXnTzDNiieC9C6BffDM2+Boy2WNfQ==\r\n TSKaINpILZlYCYYSy1aiAKUJr/dJW0zudqCg00SNRSwhNSNRfsl4Hnawbggx5JVF/vzk/Std6KkISGhpiay6LQ==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "18957fc8c66fc0af9b07a60025233031"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NS9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n \r\n 4Q9Owr4PjT4XMjR+geTxRWFJPUEKFTcyfNkRQegjBFEjevDh0+oUVf06aRXnTzDNiieC9C6BffDM2+Boy2WNfQ==\r\n TSKaINpILZlYCYYSy1aiAKUJr/dJW0zudqCg00SNRSwhNSNRfsl4Hnawbggx5JVF/vzk/Std6KkISGhpiay6LQ==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "335958ca99e0cd078fbd76eecd9f8486"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645/keys",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NS9rZXlz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n \r\n 4Q9Owr4PjT4XMjR+geTxRWFJPUEKFTcyfNkRQegjBFEjevDh0+oUVf06aRXnTzDNiieC9C6BffDM2+Boy2WNfQ==\r\n TSKaINpILZlYCYYSy1aiAKUJr/dJW0zudqCg00SNRSwhNSNRfsl4Hnawbggx5JVF/vzk/Std6KkISGhpiay6LQ==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "f9a398072fbcc982838e62300ab91cc3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n pstestonesdk6645\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk6645.blob.core.windows.net/\r\n https://pstestonesdk6645.queue.core.windows.net/\r\n https://pstestonesdk6645.table.core.windows.net/\r\n https://pstestonesdk6645.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-04T00:50:38Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "d59eec577eb7c50e91af6ce4cd23f82f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n pstestonesdk6645\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk6645.blob.core.windows.net/\r\n https://pstestonesdk6645.queue.core.windows.net/\r\n https://pstestonesdk6645.table.core.windows.net/\r\n https://pstestonesdk6645.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-04T00:50:38Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "d4783abf59a1ca54b2cb215f1d31fe7e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n pstestonesdk6645\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk6645.blob.core.windows.net/\r\n https://pstestonesdk6645.queue.core.windows.net/\r\n https://pstestonesdk6645.table.core.windows.net/\r\n https://pstestonesdk6645.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-04T00:50:38Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "e5538612d5fccfc8b8067a99106c18ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:03 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9zdG9yYWdlc2VydmljZXMvcHN0ZXN0b25lc2RrNjY0NQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Storage.StorageManagementClient/5.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/storageservices/pstestonesdk6645\r\n pstestonesdk6645\r\n \r\n \r\n East US\r\n \r\n Created\r\n \r\n https://pstestonesdk6645.blob.core.windows.net/\r\n https://pstestonesdk6645.queue.core.windows.net/\r\n https://pstestonesdk6645.table.core.windows.net/\r\n https://pstestonesdk6645.file.core.windows.net/\r\n \r\n East US\r\n Available\r\n West US\r\n Available\r\n 2015-08-04T00:50:38Z\r\n \r\n Standard_GRS\r\n \r\n \r\n \r\n ResourceGroup\r\n Default-Storage-EastUS\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n PersistentVMRole\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1358"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "16b2a14af673cde48581af50881a1f56"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n https://pstestonesdk6645.blob.core.windows.net/mydeployments/20150804_005113_OneWebOneWorker.cspkg\r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n true\r\n false\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1920"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "883df619c5a9cf9c82ce8912ac4fb4d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:14 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5n",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n https://pstestonesdk6645.blob.core.windows.net/mydeployments/20150804_005803_OneWebOneWorker.cspkg\r\n \r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n true\r\n false\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1920"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7888d6a3c5afcc3ea33346315c303619"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:04 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/883df619c5a9cf9c82ce8912ac4fb4d9",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzg4M2RmNjE5YzVhOWNmOWM4MmNlODkxMmFjNGZiNGQ5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 883df619-c5a9-cf9c-82ce-8912ac4fb4d9\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "52883e121608c131bf9d0a2f08418f2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:14 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/883df619c5a9cf9c82ce8912ac4fb4d9",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzg4M2RmNjE5YzVhOWNmOWM4MmNlODkxMmFjNGZiNGQ5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 883df619-c5a9-cf9c-82ce-8912ac4fb4d9\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fcd04243a2e5ce1784eb7f6b790a7262"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:51:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/883df619c5a9cf9c82ce8912ac4fb4d9",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzg4M2RmNjE5YzVhOWNmOWM4MmNlODkxMmFjNGZiNGQ5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 883df619-c5a9-cf9c-82ce-8912ac4fb4d9\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b66abc9288bfc5d38f69b7c8afd5e1ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9ee4c43045ecb1e8bc492397c27bbfb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "063b660eab99c5bb8a8ba43563baddf2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:23 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "adeece8b0c64c4e3b94e2728f187a892"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:58 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c447df4640ac3b593989fa52d2450d2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "412c71a61a80c5899e4b57d99017b27a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:13 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92b32438e3dbc6d48086a923d0540931"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:49 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "220bf239c823c475999fdaf01e29c11c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/operations/isavailable/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9vcGVyYXRpb25zL2lzYXZhaWxhYmxlL3BzdGVzdG9uZXNkazI4MDU=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n false\r\n A hosted service with the specified name already exists.\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a13c37b3a53ccafb3e7c2b751f88810"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:06:57 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "115"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "543f7621c016c99ab8883a29569c7931"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a091f38f63c1c087b68c02db9ffe2057"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c63ebdced527c37ebeb281aab5010efa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "590"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8dccba2a4053cd38b3fa617ff573828f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1053"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "587ceabfd02ec88dbd5eaa56bb2b0bae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:15 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1053"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "13e23cf54b7ec03c9e342fce85e9809f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1053"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4aedb0774efdc7d8b495b0569c9b2316"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Production-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n \r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 1.*\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n CjxQdWJsaWNDb25maWc+CiAgPFVzZXJOYW1lPnBzdGVzdHVzZXI8L1VzZXJOYW1lPgogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+CjwvUHVibGljQ29uZmlnPg==\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1519"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9c8692f03106c7e6b772ff1450258e50"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "117"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69043d37e4c5cfd4a9b62fff16aea7b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:17 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates/sha1-6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQHY1jpZ2Bu6hASC6rK7bkoDANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA0MDA1MjIxWhcNMjAwODA0MDA1MjIxWjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6nELrQ2SuIluwvEn6rA45C1wEYDYyIWr1q2SFZ5yCIc6eu4kPbWOHLlv5sU58bg4qL5Kc85bInaALFQFFyQbPS9bb/UznvREhGgYm9g3562xNEzyvTpuP/b6iP4SAJoGuvrGrjTBKzqKnc9yxmarDy07TdrZCMeREvKPehqJZnoqExoiFlB8eBBmDUy95UkPv1nXb6B3FuSEkbAxa20bOZfnY8yprMR4Aoto8pATi3nnEqLegi94Z0Zy1EgxHvQZVv8vyOSh68kArdUZtXmeN5UKcGBVJ2GOupFebe7iutmIr7HDkFqWrpntUXl0Ut1k+rxoyRBewd43HGRtqpnAxAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAJKDdQp1OtSMAVN0zyK+UUxra6/HwyXmtPzPIXONxMQXaLPzJApnBrh3NIQ4m/KASRBr94eIxymMN7b8OUA9+FaVkRVxgL4ckTbdB794uwgL7dz/KnuG/JVOmCEiQgIzRyqpe5PkEXt+UqJ9/l6iu9LlSURkzVaCWFSIj/j20fcX+pYdYo6/eLS31zvyi9J/287VAqaQy0n5TT/lQk+Ah9VUeZVWuXSeaj/R6xS0rAJ80jyugv50M3VUcC+/iq25Di3ASNjfED5EiBLysIf+ZIxZWEhHjbYM01mE0x8w/IqGKUrnbjJnchut4krTONQWicdzA7nlC7/PasdbSVV42B8=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d634645e93fbc4f7b69cf6e7d3205f19"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates/sha1-6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQHY1jpZ2Bu6hASC6rK7bkoDANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA0MDA1MjIxWhcNMjAwODA0MDA1MjIxWjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6nELrQ2SuIluwvEn6rA45C1wEYDYyIWr1q2SFZ5yCIc6eu4kPbWOHLlv5sU58bg4qL5Kc85bInaALFQFFyQbPS9bb/UznvREhGgYm9g3562xNEzyvTpuP/b6iP4SAJoGuvrGrjTBKzqKnc9yxmarDy07TdrZCMeREvKPehqJZnoqExoiFlB8eBBmDUy95UkPv1nXb6B3FuSEkbAxa20bOZfnY8yprMR4Aoto8pATi3nnEqLegi94Z0Zy1EgxHvQZVv8vyOSh68kArdUZtXmeN5UKcGBVJ2GOupFebe7iutmIr7HDkFqWrpntUXl0Ut1k+rxoyRBewd43HGRtqpnAxAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAJKDdQp1OtSMAVN0zyK+UUxra6/HwyXmtPzPIXONxMQXaLPzJApnBrh3NIQ4m/KASRBr94eIxymMN7b8OUA9+FaVkRVxgL4ckTbdB794uwgL7dz/KnuG/JVOmCEiQgIzRyqpe5PkEXt+UqJ9/l6iu9LlSURkzVaCWFSIj/j20fcX+pYdYo6/eLS31zvyi9J/287VAqaQy0n5TT/lQk+Ah9VUeZVWuXSeaj/R6xS0rAJ80jyugv50M3VUcC+/iq25Di3ASNjfED5EiBLysIf+ZIxZWEhHjbYM01mE0x8w/IqGKUrnbjJnchut4krTONQWicdzA7nlC7/PasdbSVV42B8=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "18239bae329cc4cf858e7f6ccb6fa61b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2NlcnRpZmljYXRlcw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n \r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/certificates/sha1-6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n MIIDCjCCAfKgAwIBAgIQHY1jpZ2Bu6hASC6rK7bkoDANBgkqhkiG9w0BAQUFADBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwHhcNMTUwODA0MDA1MjIxWhcNMjAwODA0MDA1MjIxWjBBMT8wPQYKCZImiZPyLGQBGRYvV2luZG93cyBBenVyZSBTZXJ2aWNlIE1hbmFnZW1lbnQgZm9yIEV4dGVuc2lvbnMwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC6nELrQ2SuIluwvEn6rA45C1wEYDYyIWr1q2SFZ5yCIc6eu4kPbWOHLlv5sU58bg4qL5Kc85bInaALFQFFyQbPS9bb/UznvREhGgYm9g3562xNEzyvTpuP/b6iP4SAJoGuvrGrjTBKzqKnc9yxmarDy07TdrZCMeREvKPehqJZnoqExoiFlB8eBBmDUy95UkPv1nXb6B3FuSEkbAxa20bOZfnY8yprMR4Aoto8pATi3nnEqLegi94Z0Zy1EgxHvQZVv8vyOSh68kArdUZtXmeN5UKcGBVJ2GOupFebe7iutmIr7HDkFqWrpntUXl0Ut1k+rxoyRBewd43HGRtqpnAxAgMBAAEwDQYJKoZIhvcNAQEFBQADggEBAJKDdQp1OtSMAVN0zyK+UUxra6/HwyXmtPzPIXONxMQXaLPzJApnBrh3NIQ4m/KASRBr94eIxymMN7b8OUA9+FaVkRVxgL4ckTbdB794uwgL7dz/KnuG/JVOmCEiQgIzRyqpe5PkEXt+UqJ9/l6iu9LlSURkzVaCWFSIj/j20fcX+pYdYo6/eLS31zvyi9J/287VAqaQy0n5TT/lQk+Ah9VUeZVWuXSeaj/R6xS0rAJ80jyugv50M3VUcC+/iq25Di3ASNjfED5EiBLysIf+ZIxZWEhHjbYM01mE0x8w/IqGKUrnbjJnchut4krTONQWicdzA7nlC7/PasdbSVV42B8=\r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1532"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "87a3e9a94dc8cd69a165dfaf52f6e16c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:01 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-0\r\n \r\n \r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "780"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5433c2c644dec6e5ad4ee113bfaea5e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:20 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "824"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b97017f3bf1cb868aa5aeb9042ba993"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:38 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Production-Ext-0\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "827"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "abb9333b4631c139bc8ee20672b5baf4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:54 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnM=",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n Microsoft.Windows.Azure.Extensions\r\n RDP\r\n Default-RDP-Staging-Ext-1\r\n 6DDDADBBBA4026B653838343A0E42423C6491A4C\r\n sha1\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHVibGljQ29uZmlnPg0KICA8VXNlck5hbWU+cHN0ZXN0dXNlcjwvVXNlck5hbWU+DQogIDxFeHBpcmF0aW9uPjIwMTYtMDgtMDM8L0V4cGlyYXRpb24+DQo8L1B1YmxpY0NvbmZpZz4=\r\n PD94bWwtc3R5bGVzaGVldCB0eXBlPSJ0ZXh0L3hzbCIgaHJlZj0ic3R5bGUueHNsIj8+DQo8UHJpdmF0ZUNvbmZpZz4NCiAgPFBhc3N3b3JkPnBAc3N3MHJkPC9QYXNzd29yZD4NCjwvUHJpdmF0ZUNvbmZpZz4=\r\n 1.*\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "824"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a33bcb1d52bcc010bff58b163c4440f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:05 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/5433c2c644dec6e5ad4ee113bfaea5e8",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzU0MzNjMmM2NDRkZWM2ZTVhZDRlZTExM2JmYWVhNWU4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 5433c2c6-44de-c6e5-ad4e-e113bfaea5e8\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ce210b2d54cdcedc9594bafc34cc6705"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:20 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/5433c2c644dec6e5ad4ee113bfaea5e8",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzU0MzNjMmM2NDRkZWM2ZTVhZDRlZTExM2JmYWVhNWU4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 5433c2c6-44de-c6e5-ad4e-e113bfaea5e8\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "616966bc1e0dc9f686482e98f9ad9347"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:50 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5nLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n false\r\n Auto\r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-0\r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1874"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1228ac8531fcfdcb3dd27f2d3eb6061"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5nLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n false\r\n Auto\r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1874"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4adb2829df36ce45b3557cbf9cf2b091"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:00:10 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Staging/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9TdGFnaW5nLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n false\r\n Auto\r\n \r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1874"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9b90826e241c9e79fdd016c42831e95"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9794879f2d3cf90971c3f559ae3c921"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:52:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aff24f099e1acda484c78908fc5d0434"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:53:20 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "530c8bab4191c5de8bb5b98442d63177"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:53:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7bf9c1a5cd6ec1b7a260b63d5baceb08"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:54:22 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae439cc6b762c6d192ad492ef83e5de9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:54:51 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae09064203afca2a80b7ab671cf31650"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:55:22 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0e240c24a50c18bb96b11c34816c90a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:55:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "29954351f49ec2cfa62869a29d9cc9e5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:56:22 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9530753f4dbccd48bc50798a3a5b980a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:56:53 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/b1228ac8531fcfdcb3dd27f2d3eb6061",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2IxMjI4YWM4NTMxZmNmZGNiM2RkMjdmMmQzZWI2MDYx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n b1228ac8-531f-cfdc-b3dd-27f2d3eb6061\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4458a7ed0562c2e8a6632ab86e2637a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:23 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a091f38f63c1c087b68c02db9ffe2057",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2EwOTFmMzhmNjNjMWMwODdiNjhjMDJkYjlmZmUyMDU3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a091f38f-63c1-c087-b68c-02db9ffe2057\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "4b6a95fa672eca87aaf3674c41186813"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:26 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "142"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e8884b5c131bc4e4b1f73f5df3502d4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:28 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "207"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5a83455385ebcc4f898be6c1bc3f3c45"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:18 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/e8884b5c131bc4e4b1f73f5df3502d4f",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2U4ODg0YjVjMTMxYmM0ZTRiMWY3M2Y1ZGYzNTAyZDRm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n e8884b5c-131b-c4e4-b1f7-3f5df3502d4f\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ad94813e2c06c511896af815b4782c6c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:28 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/e8884b5c131bc4e4b1f73f5df3502d4f",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2U4ODg0YjVjMTMxYmM0ZTRiMWY3M2Y1ZGYzNTAyZDRm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n e8884b5c-131b-c4e4-b1f7-3f5df3502d4f\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7d40aa4cfefc190808a9d71bc00b963"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:57:57 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/c63ebdced527c37ebeb281aab5010efa",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2M2M2ViZGNlZDUyN2MzN2ViZWIyODFhYWI1MDEwZWZh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n c63ebdce-d527-c37e-beb2-81aab5010efa\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "f8dbc126b805c2d99e765a6d17e996b4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:00 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7888d6a3c5afcc3ea33346315c303619",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc4ODhkNmEzYzVhZmNjM2VhMzMzNDYzMTVjMzAzNjE5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7888d6a3-c5af-cc3e-a333-46315c303619\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d73e5c26290dc069be5a60d01e994ca7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:05 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7888d6a3c5afcc3ea33346315c303619",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc4ODhkNmEzYzVhZmNjM2VhMzMzNDYzMTVjMzAzNjE5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7888d6a3-c5af-cc3e-a333-46315c303619\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a07572d0f4c1c4c79f13b8e56acd413a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:58:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7888d6a3c5afcc3ea33346315c303619",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc4ODhkNmEzYzVhZmNjM2VhMzMzNDYzMTVjMzAzNjE5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7888d6a3-c5af-cc3e-a333-46315c303619\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b314c0cc116fcaa283a9685ed80c59d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:05 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/7888d6a3c5afcc3ea33346315c303619",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzc4ODhkNmEzYzVhZmNjM2VhMzMzNDYzMTVjMzAzNjE5",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 7888d6a3-c5af-cc3e-a333-46315c303619\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f326347ee50c715b2cc43c8d06829da"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8b97017f3bf1cb868aa5aeb9042ba993",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiOTcwMTdmM2JmMWNiODY4YWE1YWViOTA0MmJhOTkz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8b97017f-3bf1-cb86-8aa5-aeb9042ba993\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27e17b5ac52dcab8a36352625eaba6c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 00:59:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/8b97017f3bf1cb868aa5aeb9042ba993",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzhiOTcwMTdmM2JmMWNiODY4YWE1YWViOTA0MmJhOTkz",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 8b97017f-3bf1-cb86-8aa5-aeb9042ba993\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8fb009cd36c2c2e59d79001c0af77b71"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:00:09 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d46a09b37fe2c313b71d40e1c8c55322"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:00:10 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e281ffc8eecccf21b391fdca93c5a556"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:00:40 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4e29e5967f8c95185ffa49941bde319"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:01:10 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a40adc9dd084c2f69a9a0154f279a0e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:01:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a1117547d44ccfa87a4b563e6d438d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:02:11 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "572baab9e7f8cc39bd7917b9fb0b2ab4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:02:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "05cee36411bec501ad46a79b5dc6e9dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:03:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21eabbcd8fcfc3398f41647d9b503fbe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:03:43 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/4adb2829df36ce45b3557cbf9cf2b091",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzRhZGIyODI5ZGYzNmNlNDViMzU1N2NiZjljZjJiMDkx",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 4adb2829-df36-ce45-b355-7cbf9cf2b091\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7a5e8d0ab62c88f8a6e60aeac994545"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:12 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/587ceabfd02ec88dbd5eaa56bb2b0bae",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzU4N2NlYWJmZDAyZWM4OGRiZDVlYWE1NmJiMmIwYmFl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 587ceabf-d02e-c88d-bd5e-aa56bb2b0bae\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "2455fdbe9998c059895536a9d6520c3c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:16 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/5a83455385ebcc4f898be6c1bc3f3c45",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzVhODM0NTUzODVlYmNjNGY4OThiZTZjMWJjM2YzYzQ1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 5a834553-85eb-cc4f-898b-e6c1bc3f3c45\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8898a1352ea2c36cb9a61706222f61f1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:18 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/5a83455385ebcc4f898be6c1bc3f3c45",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzVhODM0NTUzODVlYmNjNGY4OThiZTZjMWJjM2YzYzQ1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 5a834553-85eb-cc4f-898b-e6c1bc3f3c45\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6aa07272759dc220bf32eaf5bf729a76"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:48 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/13e23cf54b7ec03c9e342fce85e9809f",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzEzZTIzY2Y1NGI3ZWMwM2M5ZTM0MmZjZTg1ZTk4MDlm",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2014-10-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.ManagementClient/4.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 13e23cf5-4b7e-c03c-9e34-2fce85e9809f\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "x-ms-request-id": [
+ "efebdb39aa9dc3f19a4ec3a504634c86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:52 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/abb9333b4631c139bc8ee20672b5baf4",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2FiYjkzMzNiNDYzMWMxMzliYzhlZTIwNjcyYjViYWY0",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n abb9333b-4631-c139-bc8e-e20672b5baf4\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2c3edf15bb5c97d8359445553d673ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:04:54 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/abb9333b4631c139bc8ee20672b5baf4",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2FiYjkzMzNiNDYzMWMxMzliYzhlZTIwNjcyYjViYWY0",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n abb9333b-4631-c139-bc8e-e20672b5baf4\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "527e49971fa3c756b19945ebc0516257"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:05:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deploymentslots/Production/?comp=config",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzbG90cy9Qcm9kdWN0aW9uLz9jb21wPWNvbmZpZw==",
+ "RequestMethod": "POST",
+ "RequestBody": "\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n false\r\n Auto\r\n \r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n \r\n \r\n \r\n \r\n",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/xml"
+ ],
+ "Content-Length": [
+ "1877"
+ ],
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09377cce2961cf88a09c6ffb13341957"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:05:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/09377cce2961cf88a09c6ffb13341957",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzA5Mzc3Y2NlMjk2MWNmODhhMDljNmZmYjEzMzQxOTU3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 09377cce-2961-cf88-a09c-6ffb13341957\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "419794552488c9b7bc1e5a4cc8470530"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:05:25 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/09377cce2961cf88a09c6ffb13341957",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzA5Mzc3Y2NlMjk2MWNmODhhMDljNmZmYjEzMzQxOTU3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 09377cce-2961-cf88-a09c-6ffb13341957\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5016448524b5c39a8b971aab2e6a2c91"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:05:56 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/09377cce2961cf88a09c6ffb13341957",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzA5Mzc3Y2NlMjk2MWNmODhhMDljNmZmYjEzMzQxOTU3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 09377cce-2961-cf88-a09c-6ffb13341957\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "03a659bcbba2cf4399e71f3101f47e13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:06:26 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/09377cce2961cf88a09c6ffb13341957",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzA5Mzc3Y2NlMjk2MWNmODhhMDljNmZmYjEzMzQxOTU3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 09377cce-2961-cf88-a09c-6ffb13341957\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f23d84f3a004c43f88e18481caec41a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:06:57 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/extensions/Default-RDP-Staging-Ext-1",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2V4dGVuc2lvbnMvRGVmYXVsdC1SRFAtU3RhZ2luZy1FeHQtMQ==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "be879b880f30cf7da3629af77f5dbeed"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:02 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/be879b880f30cf7da3629af77f5dbeed",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2JlODc5Yjg4MGYzMGNmN2RhMzYyOWFmNzdmNWRiZWVk",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n be879b88-0f30-cf7d-a362-9af77f5dbeed\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "84ec59615470c680bb8f6213663decd7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:02 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a33bcb1d52bcc010bff58b163c4440f8",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2EzM2JjYjFkNTJiY2MwMTBiZmY1OGIxNjNjNDQ0MGY4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a33bcb1d-52bc-c010-bff5-8b163c4440f8\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2dc1fb7024a0ce628a19e778799d4688"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:05 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a33bcb1d52bcc010bff58b163c4440f8",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2EzM2JjYjFkNTJiY2MwMTBiZmY1OGIxNjNjNDQ0MGY4",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a33bcb1d-52bc-c010-bff5-8b163c4440f8\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95385fd9cdbec3139cfaf1cd36a9f6b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:35 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a9b90826e241c9e79fdd016c42831e95",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2E5YjkwODI2ZTI0MWM5ZTc5ZmRkMDE2YzQyODMxZTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a9b90826-e241-c9e7-9fdd-016c42831e95\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "402a48b40933c64195b24cb5b8e4f79a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:07:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a9b90826e241c9e79fdd016c42831e95",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2E5YjkwODI2ZTI0MWM5ZTc5ZmRkMDE2YzQyODMxZTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a9b90826-e241-c9e7-9fdd-016c42831e95\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3c74c8aed333ce74b0e7b23fa7ec728b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:08:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a9b90826e241c9e79fdd016c42831e95",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2E5YjkwODI2ZTI0MWM5ZTc5ZmRkMDE2YzQyODMxZTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a9b90826-e241-c9e7-9fdd-016c42831e95\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc8c2c27f71cc14c92c1465ee819fc19"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:08:36 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a9b90826e241c9e79fdd016c42831e95",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2E5YjkwODI2ZTI0MWM5ZTc5ZmRkMDE2YzQyODMxZTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a9b90826-e241-c9e7-9fdd-016c42831e95\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f25de624b67fcbb58263327cc256eda6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:07 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/a9b90826e241c9e79fdd016c42831e95",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zL2E5YjkwODI2ZTI0MWM5ZTc5ZmRkMDE2YzQyODMxZTk1",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n a9b90826-e241-c9e7-9fdd-016c42831e95\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "11205ad4d58dc98a82c28087086bedb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:37 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1P2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805\r\n pstestonesdk2805\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-04T00:51:10Z\r\n 2015-08-04T00:58:05Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk2805\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n RunningTransitioning\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:09:24Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:09:39Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "10614"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5005ce333e5bc7c48247f854dca798de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:39 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1P2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805\r\n pstestonesdk2805\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-04T00:51:10Z\r\n 2015-08-04T00:58:05Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk2805\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:09:41Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n c194b4c4-3c3d-4908-a368-13867d6c9666\r\n Production\r\n 9f4657a3f0d64f5eb2bb201e2001be9d\r\n Running\r\n \r\n http://pstestonesdk2805.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.94.127\r\n \r\n \r\n Endpoint1\r\n 191.237.89.81\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.89.81\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.86.117\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.89.81\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:58:05Z\r\n 2015-08-04T01:09:39Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Production-Ext-0\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.89.81\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "10601"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e8bb5c43f3ac65b81e354907b895a69"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805?embed-detail=true",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1P2VtYmVkLWRldGFpbD10cnVl",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n https://management.core.windows.net/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805\r\n pstestonesdk2805\r\n \r\n \r\n East US\r\n \r\n Created\r\n 2015-08-04T00:51:10Z\r\n 2015-08-04T00:58:05Z\r\n \r\n \r\n ResourceGroup\r\n pstestonesdk2805\r\n \r\n \r\n ResourceLocation\r\n East US\r\n \r\n \r\n \r\n \r\n \r\n 06b543b1-7101-420a-8da4-e1b847745e38\r\n Staging\r\n 1c6110601e1e49dcbc0df2c7be65b4e0\r\n Running\r\n \r\n http://9f4657a3f0d64f5eb2bb201e2001be9d.cloudapp.net/\r\n PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IS0tICAqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqICBUaGlzIGZpbGUgd2FzIGdlbmVyYXRlZCBieSBhIHRvb2wgZnJvbSB0aGUgcHJvamVjdCBmaWxlOiBTZXJ2aWNlQ29uZmlndXJhdGlvbi5DbG91ZC5jc2NmZyAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKi0tPjxTZXJ2aWNlQ29uZmlndXJhdGlvbiBzZXJ2aWNlTmFtZT0iT25lV2ViT25lV29ya2VyIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMiIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTEwLjEuOCI+ICA8Um9sZSBuYW1lPSJXZWJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+ICA8Um9sZSBuYW1lPSJXb3JrZXJSb2xlMSI+ICAgIDxJbnN0YW5jZXMgY291bnQ9IjEiIC8+ICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+ICAgICAgPFNldHRpbmcgbmFtZT0iTWljcm9zb2Z0LldpbmRvd3NBenVyZS5QbHVnaW5zLkRpYWdub3N0aWNzLkNvbm5lY3Rpb25TdHJpbmciIHZhbHVlPSJVc2VEZXZlbG9wbWVudFN0b3JhZ2U9dHJ1ZSIgLz4gICAgPC9Db25maWd1cmF0aW9uU2V0dGluZ3M+ICA8L1JvbGU+PC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=\r\n \r\n \r\n WebRole1\r\n WebRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.157\r\n \r\n \r\n Endpoint1\r\n 191.237.77.228\r\n 80\r\n 80\r\n http\r\n \r\n \r\n Microsoft.WindowsAzure.Plugins.RemoteForwarder.RdpInput\r\n 191.237.77.228\r\n 3389\r\n 20000\r\n tcp\r\n \r\n \r\n Started\r\n \r\n \r\n WorkerRole1\r\n WorkerRole1_IN_0\r\n ReadyRole\r\n 0\r\n 0\r\n Small\r\n \r\n 100.116.88.159\r\n Started\r\n \r\n \r\n 1\r\n \r\n \r\n WebRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n 80\r\n http\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n 3389\r\n tcp\r\n 191.237.77.228\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n WA-GUEST-OS-2.41_201507-02\r\n \r\n \r\n NetworkConfiguration\r\n \r\n \r\n \r\n \r\n \r\n 1.8.31004.1351\r\n false\r\n false\r\n 2015-08-04T00:51:15Z\r\n 2015-08-04T01:10:14Z\r\n \r\n \r\n 2015-07-24T01:20:14Z\r\n 2015-07-28T01:20:14Z\r\n PersistentVMUpdateScheduled\r\n \r\n \r\n \r\n \r\n WebRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n WorkerRole1\r\n \r\n \r\n Default-RDP-Staging-Ext-1\r\n enable\r\n \r\n \r\n \r\n \r\n \r\n \r\n \r\n 191.237.77.228\r\n true\r\n OneWebOneWorkerContractContract\r\n \r\n \r\n \r\n \r\n \r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5718"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d63985ca0197cf3cafe0f4e075c1e1e6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:14 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deployments/c194b4c4-3c3d-4908-a368-13867d6c9666",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzL2MxOTRiNGM0LTNjM2QtNDkwOC1hMzY4LTEzODY3ZDZjOTY2Ng==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "732d37d2c447c890a5a6979fbf4fad8a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:41 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732d37d2c447c890a5a6979fbf4fad8a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMmQzN2QyYzQ0N2M4OTBhNWE2OTc5ZmJmNGZhZDhh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 732d37d2-c447-c890-a5a6-979fbf4fad8a\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de775d31907ac82a94b3de3841cf77a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:09:42 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/732d37d2c447c890a5a6979fbf4fad8a",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzczMmQzN2QyYzQ0N2M4OTBhNWE2OTc5ZmJmNGZhZDhh",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 732d37d2-c447-c890-a5a6-979fbf4fad8a\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1bf63108e798cd198041e6061f020284"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:13 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805/deployments/06b543b1-7101-420a-8da4-e1b847745e38",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1L2RlcGxveW1lbnRzLzA2YjU0M2IxLTcxMDEtNDIwYS04ZGE0LWUxYjg0Nzc0NWUzOA==",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2a9cd0736dbbc7bb881105e610e87b97"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:15 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/2a9cd0736dbbc7bb881105e610e87b97",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzJhOWNkMDczNmRiYmM3YmI4ODExMDVlNjEwZTg3Yjk3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 2a9cd073-6dbb-c7bb-8811-05e610e87b97\r\n InProgress\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "197"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8cd7747bc399c87f966ed2625c370483"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:15 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/operations/2a9cd0736dbbc7bb881105e610e87b97",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9vcGVyYXRpb25zLzJhOWNkMDczNmRiYmM3YmI4ODExMDVlNjEwZTg3Yjk3",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "\r\n 2a9cd073-6dbb-c7bb-8811-05e610e87b97\r\n Succeeded\r\n 200\r\n",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/xml; charset=utf-8"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae81187cd534c59c823f2bfb1f385022"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:45 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/4d368445-cbb1-42a7-97a6-6850ab99f48e/services/hostedservices/pstestonesdk2805",
+ "EncodedRequestUri": "LzRkMzY4NDQ1LWNiYjEtNDJhNy05N2E2LTY4NTBhYjk5ZjQ4ZS9zZXJ2aWNlcy9ob3N0ZWRzZXJ2aWNlcy9wc3Rlc3RvbmVzZGsyODA1",
+ "RequestMethod": "DELETE",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-version": [
+ "2015-04-01"
+ ],
+ "User-Agent": [
+ "Microsoft.WindowsAzure.Management.Compute.ComputeManagementClient/12.0.0.0"
+ ]
+ },
+ "ResponseBody": "",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "0"
+ ],
+ "x-ms-servedbyregion": [
+ "ussouth3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "57a3c5b36adcccabaca223030d223983"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Tue, 04 Aug 2015 01:10:47 GMT"
+ ],
+ "Server": [
+ "1.0.6198.252",
+ "(rd_rdfe_stable.150724-1753)",
+ "Microsoft-HTTPAPI/2.0"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "": [
+ "onesdk6645",
+ "onesdk2805"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e"
+ }
+}
\ No newline at end of file
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 9f7243af28dc..f0ac48e2ddde 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj
@@ -66,8 +66,8 @@
False
..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.Compute.7.0.0-preview\lib\net40\Microsoft.Azure.Management.Compute.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Compute.8.2.0\lib\net40\Microsoft.Azure.Management.Compute.dll
True
@@ -299,6 +299,9 @@
Always
+
+ Always
+
Always
@@ -323,6 +326,9 @@
Always
+
+ Always
+
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1
index b5a47c52a22d..7b129e658606 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/ComputeTestCommon.ps1
@@ -94,6 +94,18 @@ function Get-ComputeTestLocation
return $env:AZURE_COMPUTE_TEST_LOCATION;
}
+# Get Compute Default Test Location
+function Get-ComputeDefaultLocation
+{
+ $test_location = Get-ComputeTestLocation;
+ if ($test_location -eq '' -or $test_location -eq $null)
+ {
+ $test_location = 'westus';
+ }
+
+ return $test_location;
+}
+
# Cleans the created resource group
function Clean-ResourceGroup($rgname)
{
@@ -197,6 +209,36 @@ function Get-DefaultVMSize
return $vmSizes[0].Name;
}
+
+<#
+.SYNOPSIS
+Gets default RDFE Image
+#>
+function Get-DefaultRDFEImage
+{
+ param([string] $loca = "East Asia", [string] $query = '*Windows*Data*Center*')
+
+ $d = (Azure\Get-AzureVMImage | where {$_.ImageName -like $query -and ($_.Location -like "*;$loca;*" -or $_.Location -like "$loca;*" -or $_.Location -like "*;$loca" -or $_.Location -eq "$loca")});
+
+ if ($d -eq $null)
+ {
+ return $null;
+ }
+ else
+ {
+ return $d[-1].ImageName;
+ }
+}
+
+<#
+.SYNOPSIS
+Gets default storage type string
+#>
+function Get-DefaultStorageType
+{
+ return 'Standard_GRS';
+}
+
<#
.SYNOPSIS
Gets default CRP Image
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs
index 0f4824963ce3..0ff55d7a4fa4 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.cs
@@ -116,5 +116,12 @@ public void TestGetVMSizeFromAllLocations()
{
ComputeTestController.NewInstance.RunPsTest("Test-GetVMSizeFromAllLocations");
}
+
+ [Fact]
+ [Trait(Category.AcceptanceType, Category.CheckIn)]
+ public void TestVirtualMachineListWithPaging()
+ {
+ ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineListWithPaging");
+ }
}
}
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1 b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1
index ebd07ab4fae0..36de6b3bdb25 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/ScenarioTests/VirtualMachineTests.ps1
@@ -961,11 +961,12 @@ function Test-VirtualMachinePlan2
try
{
# Common
- $loc = 'westus';
+ $loc = Get-ComputeDefaultLocation;
+
New-AzureResourceGroup -Name $rgname -Location $loc -Force;
# VM Profile & Hardware
- $vmsize = 'Standard_A0';
+ $vmsize = Get-DefaultVMSize;
$vmname = 'vm' + $rgname;
$p = New-AzureVMConfig -VMName $vmname -VMSize $vmsize;
# NRP
@@ -984,7 +985,7 @@ function Test-VirtualMachinePlan2
# Storage Account (SA)
$stoname = 'sto' + $rgname;
- $stotype = 'Standard_GRS';
+ $stotype = Get-DefaultStorageType;
New-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname -Location $loc -Type $stotype;
$stoaccount = Get-AzureStorageAccount -ResourceGroupName $rgname -Name $stoname;
@@ -1001,18 +1002,13 @@ function Test-VirtualMachinePlan2
$cred = New-Object System.Management.Automation.PSCredential ($user, $securePassword);
$computerName = 'test';
$vhdContainer = "https://$stoname.blob.core.windows.net/test";
- $img = 'a699494373c04fc0bc8f2bb1389d6106__Windows-Server-2012-Datacenter-201503.01-en.us-127GB.vhd';
# $p.StorageProfile.OSDisk = $null;
$p = Set-AzureVMOperatingSystem -VM $p -Windows -ComputerName $computerName -Credential $cred;
# Image Reference
# Pick a VMM Image
- $vmmImgPubName = 'a10networks';
- $vmmImgOfferName = 'a10-vthunder-adc';
- $vmmImgSkusName = 'vthunder_byol';
- $vmmImgVerName = '1.0.0';
- $imgRef = Get-AzureVMImage -PublisherName $vmmImgPubName -Location $loc -Offer $vmmImgOfferName -Skus $vmmImgSkusName -Version $vmmImgVerName;
+ $imgRef = (Get-MarketplaceImage)[0];
$plan = $imgRef.PurchasePlan;
$p = Set-AzureVMSourceImage -VM $p -PublisherName $imgRef.PublisherName -Offer $imgRef.Offer -Skus $imgRef.Skus -Version $imgRef.Version;
$p.Plan = New-Object Microsoft.Azure.Management.Compute.Models.Plan;
@@ -1321,11 +1317,12 @@ function Test-LinuxVirtualMachine
# Test Image Cmdlet Output Format
function Test-VMImageCmdletOutputFormat
{
- $locStr = 'westus';
- $publisher = 'MicrosoftWindowsServer';
- $offer = 'WindowsServer';
- $sku = '2008-R2-SP1';
- $ver = '2.0.201503';
+ $locStr = Get-ComputeDefaultLocation;
+ $imgRef = Get-DefaultCRPImage -loc $locStr;
+ $publisher = $imgRef.PublisherName;
+ $offer = $imgRef.Offer;
+ $sku = $imgRef.Skus;
+ $ver = $imgRef.Version;
Assert-OutputContains " Get-AzureVMImagePublisher -Location $locStr" @('Id', 'Location', 'PublisherName');
@@ -1355,3 +1352,126 @@ function Test-GetVMSizeFromAllLocations
Write-Output ('Found VM Size Standard_A3 in Location: ' + $loc);
}
}
+
+<#
+.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
+#>
+function Test-VirtualMachineListWithPaging
+{
+ # Setup
+ $rgname = Get-ComputeTestResourceName
+
+ try
+ {
+ # Common
+ $loc = Get-ComputeDefaultLocation;
+ $st = 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"
+ }
+}
+"@;
+
+ $st = Set-Content -Path $paramFile -Value $paramContent -Force;
+
+ $st = 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
+ }
+}
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 9a2d436e5e0c..9d4e297b53bf 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
@@ -7,13 +7,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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\": \"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\": \"Gemalto.SafeNet.ProtectV.Azure.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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/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]",
"ResponseHeaders": {
"Content-Length": [
- "44899"
+ "53697"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,7 +28,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f2453be8-f2ca-450a-9e76-e85b81868da3"
+ "e638bc52-fd0a-47b8-8d2b-3820bda10d2d"
],
"Cache-Control": [
"no-cache"
@@ -38,16 +38,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14992"
],
"x-ms-correlation-request-id": [
- "5c2980a9-4b7d-496c-be55-57ea7e6bf49c"
+ "0317dc7a-c050-4898-a039-234e73aee476"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135532Z:5c2980a9-4b7d-496c-be55-57ea7e6bf49c"
+ "WESTUS:20150805T223651Z:0317dc7a-c050-4898-a039-234e73aee476"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:31 GMT"
+ "Wed, 05 Aug 2015 22:36:51 GMT"
]
},
"StatusCode": 200
@@ -59,13 +59,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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\": \"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\": \"Gemalto.SafeNet.ProtectV.Azure.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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/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]",
"ResponseHeaders": {
"Content-Length": [
- "44899"
+ "53697"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -80,7 +80,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "d0b3f541-12b8-4ba4-88ed-2314fb1f35f7"
+ "553b5a91-d857-49ea-a306-0201069745c8"
],
"Cache-Control": [
"no-cache"
@@ -90,16 +90,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14987"
],
"x-ms-correlation-request-id": [
- "e3b6a91c-15aa-4c2e-8fff-bc3e72841335"
+ "225e16f8-d7bf-4c94-b265-26a00c2371a0"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135533Z:e3b6a91c-15aa-4c2e-8fff-bc3e72841335"
+ "WESTUS:20150805T223652Z:225e16f8-d7bf-4c94-b265-26a00c2371a0"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:32 GMT"
+ "Wed, 05 Aug 2015 22:36:52 GMT"
]
},
"StatusCode": 200
@@ -111,13 +111,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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\": \"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\": \"Gemalto.SafeNet.ProtectV.Azure.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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/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]",
"ResponseHeaders": {
"Content-Length": [
- "44899"
+ "53697"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -132,7 +132,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9dd2cc20-34c2-4373-9d0f-3cbd4c05525a"
+ "8f29ea2e-3282-4846-b943-9546b85e641d"
],
"Cache-Control": [
"no-cache"
@@ -142,16 +142,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14986"
],
"x-ms-correlation-request-id": [
- "5aa488d9-9b2e-4ede-959e-abac2bf5f104"
+ "aaca9dbe-b5e6-4976-ae3e-d9c5714cc48f"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135533Z:5aa488d9-9b2e-4ede-959e-abac2bf5f104"
+ "WESTUS:20150805T223652Z:aaca9dbe-b5e6-4976-ae3e-d9c5714cc48f"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:32 GMT"
+ "Wed, 05 Aug 2015 22:36:52 GMT"
]
},
"StatusCode": 200
@@ -163,13 +163,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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\": \"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\": \"Gemalto.SafeNet.ProtectV.Azure.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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/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]",
"ResponseHeaders": {
"Content-Length": [
- "44899"
+ "53697"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -184,7 +184,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "fe44de30-f684-450b-8113-238c1b15219e"
+ "e8914f94-c0fc-4369-970c-d602bbda1094"
],
"Cache-Control": [
"no-cache"
@@ -194,16 +194,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14985"
],
"x-ms-correlation-request-id": [
- "0998adda-bb7d-4562-9039-fdaed154e1f2"
+ "705f4ff1-7d60-4190-b072-8a00fb42e9d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135533Z:0998adda-bb7d-4562-9039-fdaed154e1f2"
+ "WESTUS:20150805T223653Z:705f4ff1-7d60-4190-b072-8a00fb42e9d7"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:32 GMT"
+ "Wed, 05 Aug 2015 22:36:52 GMT"
]
},
"StatusCode": 200
@@ -215,13 +215,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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\": \"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\": \"Gemalto.SafeNet.ProtectV.Azure.Test\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Gemalto.SafeNet.ProtectV.Azure.Test\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"GitHub\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/GitHub\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"halobicloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/halobicloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hanu\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hanu\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hewlett-packard\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hewlett-packard\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"hortonworks\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/hortonworks\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"iaansys\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/iaansys\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"imc\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/imc\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infolibrarian\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infolibrarian\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"informatica-cloud\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/informatica-cloud\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"infostrat\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/infostrat\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"intelligent-plant-ltd\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/intelligent-plant-ltd\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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.Gemalto.SafeNet.ProtectV.Azure\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.Gemalto.SafeNet.ProtectV.Azure\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"Test.TrendMicro.DeepSecurity\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/Test.TrendMicro.DeepSecurity\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"thinkboxsoftware\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/thinkboxsoftware\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"topdesk\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/topdesk\"\r\n },\r\n {\r\n \"location\": \"westus\",\r\n \"name\": \"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\": \"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/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]",
"ResponseHeaders": {
"Content-Length": [
- "44899"
+ "53697"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -236,7 +236,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "6b75909d-46e6-47a9-86cf-220b0b558970"
+ "0fc179e0-5f03-4260-996b-ab58c82986b7"
],
"Cache-Control": [
"no-cache"
@@ -246,16 +246,68 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14983"
],
"x-ms-correlation-request-id": [
- "656912f4-5fd8-45a4-9302-5900e3be1001"
+ "97db7f7c-dff6-43c6-a205-da6cc74c4132"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:656912f4-5fd8-45a4-9302-5900e3be1001"
+ "WESTUS:20150805T223653Z:97db7f7c-dff6-43c6-a205-da6cc74c4132"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36:53 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "53697"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3800b9a5-1dd6-4a3c-8611-10107bb14ba9"
+ ],
+ "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": [
+ "cc2960b2-df95-4bfe-965f-c0f06c15b186"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T223653Z:cc2960b2-df95-4bfe-965f-c0f06c15b186"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 22:36:53 GMT"
]
},
"StatusCode": 200
@@ -267,7 +319,7 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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]",
@@ -288,7 +340,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "a7472890-5737-44f4-9491-f820c9533191"
+ "89186efc-7148-4cb8-835e-35a7aa719003"
],
"Cache-Control": [
"no-cache"
@@ -298,16 +350,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14991"
],
"x-ms-correlation-request-id": [
- "9985ce24-4fd7-4aae-818a-c6c39abd4c10"
+ "0d29e771-d8c8-4d18-9c74-56616ad35a2f"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135533Z:9985ce24-4fd7-4aae-818a-c6c39abd4c10"
+ "WESTUS:20150805T223651Z:0d29e771-d8c8-4d18-9c74-56616ad35a2f"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:32 GMT"
+ "Wed, 05 Aug 2015 22:36:51 GMT"
]
},
"StatusCode": 200
@@ -319,7 +371,7 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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]",
@@ -340,7 +392,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "3e12b7e3-1680-4835-a9ff-efd14c629f12"
+ "343b42cf-0b92-4cf2-b812-401269f36b3b"
],
"Cache-Control": [
"no-cache"
@@ -350,16 +402,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14984"
],
"x-ms-correlation-request-id": [
- "e0622d06-829b-45b3-9977-5010ffa4e595"
+ "6eca09b4-23b5-49a5-8c8d-725bae74b231"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135533Z:e0622d06-829b-45b3-9977-5010ffa4e595"
+ "WESTUS:20150805T223653Z:6eca09b4-23b5-49a5-8c8d-725bae74b231"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36:52 GMT"
]
},
"StatusCode": 200
@@ -371,7 +423,7 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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]",
@@ -392,7 +444,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9a089d0c-dd22-44e9-88d4-eb20a6d6260e"
+ "4d3c19d2-19d4-4256-a2f1-6627bc4ff7ee"
],
"Cache-Control": [
"no-cache"
@@ -402,16 +454,68 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14982"
],
"x-ms-correlation-request-id": [
- "e53192cf-47bc-4205-bc55-3de8d10c6aff"
+ "2cc0cdcf-5d37-47d3-8aa9-7075e73b048b"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:e53192cf-47bc-4205-bc55-3de8d10c6aff"
+ "WESTUS:20150805T223653Z:2cc0cdcf-5d37-47d3-8aa9-7075e73b048b"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36: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=",
+ "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\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "258"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3279420-3e77-4a9b-8480-10460317f96c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14979"
+ ],
+ "x-ms-correlation-request-id": [
+ "7636a8f7-fedc-46c1-960e-ee43af61e0e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T223654Z:7636a8f7-fedc-46c1-960e-ee43af61e0e2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 22:36:53 GMT"
]
},
"StatusCode": 200
@@ -423,7 +527,7 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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]",
@@ -444,7 +548,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "4e68aa3c-f866-4a0b-8c7c-eb54cb536230"
+ "fc204240-0c2f-44a6-9151-2db2759c5064"
],
"Cache-Control": [
"no-cache"
@@ -454,16 +558,16 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14990"
],
"x-ms-correlation-request-id": [
- "fb4db93a-3c00-40db-a4f8-b4756c916784"
+ "f1e83b63-95b7-4f6e-a082-1ed00bc41910"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:fb4db93a-3c00-40db-a4f8-b4756c916784"
+ "WESTUS:20150805T223651Z:f1e83b63-95b7-4f6e-a082-1ed00bc41910"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36:51 GMT"
]
},
"StatusCode": 200
@@ -475,7 +579,7 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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]",
@@ -496,7 +600,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "590f50ba-d2c4-4569-86f7-951dfd5d6704"
+ "df539300-8162-4d31-bd57-3cd889701b81"
],
"Cache-Control": [
"no-cache"
@@ -506,16 +610,68 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14981"
],
"x-ms-correlation-request-id": [
- "349f2ab6-d71f-4c6c-995f-0d7971b147a6"
+ "9aec1072-bd33-41c2-8c66-190dad6edbf0"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:349f2ab6-d71f-4c6c-995f-0d7971b147a6"
+ "WESTUS:20150805T223653Z:9aec1072-bd33-41c2-8c66-190dad6edbf0"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36: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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1147"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de61ba1e-3e0f-4d76-95db-f48a571869de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14978"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4596bb9-fa2e-48b8-971e-7c556f429d66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T223654Z:c4596bb9-fa2e-48b8-971e-7c556f429d66"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 22:36:54 GMT"
]
},
"StatusCode": 200
@@ -527,13 +683,13 @@
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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/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]",
"ResponseHeaders": {
"Content-Length": [
- "870"
+ "874"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -548,7 +704,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "ed3a5647-dead-40cf-a027-13eddd95c1f4"
+ "70886f44-54ec-4044-843e-d29a44663bc9"
],
"Cache-Control": [
"no-cache"
@@ -561,31 +717,31 @@
"14989"
],
"x-ms-correlation-request-id": [
- "c0e95902-45d8-42d7-a167-64cb2a15f3e6"
+ "753f6297-f5bc-4d25-854f-b0d237652f45"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:c0e95902-45d8-42d7-a167-64cb2a15f3e6"
+ "WESTUS:20150805T223652Z:753f6297-f5bc-4d25-854f-b0d237652f45"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:33 GMT"
+ "Wed, 05 Aug 2015 22:36:51 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/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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "[\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 {\r\n \"location\": \"westus\",\r\n \"name\": \"3.0.201504\",\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.201504\"\r\n },\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]",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "882"
+ "874"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -600,7 +756,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b99855b3-aa8d-4435-aff4-1188e3e6bd4b"
+ "9b579691-80d7-4f34-bbf2-53a25f220079"
],
"Cache-Control": [
"no-cache"
@@ -610,34 +766,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "14977"
],
"x-ms-correlation-request-id": [
- "c4f8d766-b02b-47cb-a941-c31a6204a83c"
+ "6a3c5a77-b53e-4419-a673-1e44649e2172"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135534Z:c4f8d766-b02b-47cb-a941-c31a6204a83c"
+ "WESTUS:20150805T223654Z:6a3c5a77-b53e-4419-a673-1e44649e2172"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:34 GMT"
+ "Wed, 05 Aug 2015 22:36:54 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/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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "[\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 {\r\n \"location\": \"westus\",\r\n \"name\": \"4.0.201504\",\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.201504\"\r\n },\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]",
+ "ResponseBody": "{\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}",
"ResponseHeaders": {
"Content-Length": [
- "891"
+ "393"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -652,7 +808,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "9c03d51f-a01d-4651-9909-b13233ba5b2b"
+ "e1299ecb-b097-4654-9305-0be59f14b82f"
],
"Cache-Control": [
"no-cache"
@@ -662,34 +818,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
+ "14988"
],
"x-ms-correlation-request-id": [
- "41cccf07-6107-43bd-a842-b46c5b2c0778"
+ "0df53c2f-0324-4d9c-807d-f30f392e7db3"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135535Z:41cccf07-6107-43bd-a842-b46c5b2c0778"
+ "WESTUS:20150805T223652Z:0df53c2f-0324-4d9c-807d-f30f392e7db3"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:34 GMT"
+ "Wed, 05 Aug 2015 22:36:52 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/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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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 \"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}",
"ResponseHeaders": {
"Content-Length": [
- "313"
+ "393"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -704,7 +860,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "b4b425bd-6d58-4c93-8251-9f7c15bd1b2f"
+ "645854b3-064b-4a07-bfef-2a9951bf8dda"
],
"Cache-Control": [
"no-cache"
@@ -714,31 +870,31 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14986"
+ "14973"
],
"x-ms-correlation-request-id": [
- "c5b74c39-c520-4661-9fcf-59d8f9392a56"
+ "1b31753b-2179-4085-8007-938819d325c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135535Z:c5b74c39-c520-4661-9fcf-59d8f9392a56"
+ "WESTUS:20150805T223654Z:1b31753b-2179-4085-8007-938819d325c0"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:34 GMT"
+ "Wed, 05 Aug 2015 22:36:54 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/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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "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\": \"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/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}",
"ResponseHeaders": {
"Content-Length": [
"393"
@@ -756,7 +912,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "f39499dd-71ab-4561-bb50-f3177f972099"
+ "5190de73-891e-4313-9257-6496f0af866f"
],
"Cache-Control": [
"no-cache"
@@ -766,34 +922,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14985"
+ "14972"
],
"x-ms-correlation-request-id": [
- "92dee5a1-5ef4-4c38-9470-5da46bf3c1aa"
+ "3b272b1c-96e7-4baf-9e26-c5cebd7aa477"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135535Z:92dee5a1-5ef4-4c38-9470-5da46bf3c1aa"
+ "WESTUS:20150805T223654Z:3b272b1c-96e7-4baf-9e26-c5cebd7aa477"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:34 GMT"
+ "Wed, 05 Aug 2015 22:36:54 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/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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/6.0.0.0"
+ "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\": \"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\": \"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]",
"ResponseHeaders": {
"Content-Length": [
- "393"
+ "886"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -808,7 +964,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "43b0bbd1-e1c3-49f3-a721-df4a2ae35912"
+ "e1e25834-8f8d-480d-8d00-09863ffcf476"
],
"Cache-Control": [
"no-cache"
@@ -818,16 +974,120 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14984"
+ "14976"
+ ],
+ "x-ms-correlation-request-id": [
+ "03f1e460-283f-4442-a856-d061375085fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T223654Z:03f1e460-283f-4442-a856-d061375085fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 22:36:54 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==",
+ "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\": \"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]",
+ "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": [
+ "0b0a8b61-05be-4634-ab41-aa162cf710e1"
+ ],
+ "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": [
+ "1aeda40a-6f9d-446c-9ab5-f8cf4be2d719"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T223654Z:1aeda40a-6f9d-446c-9ab5-f8cf4be2d719"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 22:36:54 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",
+ "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\": \"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]",
+ "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": [
+ "04383ec2-c62c-4c6d-be50-e6548d7a3bfa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14974"
],
"x-ms-correlation-request-id": [
- "5be40517-e8fb-4fdb-93a3-f1906f7b85f4"
+ "6a13afcb-79cb-4bce-8c97-3b58d15aedc3"
],
"x-ms-routing-request-id": [
- "WESTUS:20150617T135535Z:5be40517-e8fb-4fdb-93a3-f1906f7b85f4"
+ "WESTUS:20150805T223654Z:6a13afcb-79cb-4bce-8c97-3b58d15aedc3"
],
"Date": [
- "Wed, 17 Jun 2015 13:55:34 GMT"
+ "Wed, 05 Aug 2015 22:36:54 GMT"
]
},
"StatusCode": 200
@@ -839,4 +1099,4 @@
"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/TestVirtualMachineListWithPaging.json b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineListWithPaging.json
new file mode 100644
index 000000000000..e5847c90b5ed
--- /dev/null
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/SessionRecords/Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests/TestVirtualMachineListWithPaging.json
@@ -0,0 +1,779 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzU/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": [
+ "14654"
+ ],
+ "x-ms-request-id": [
+ "b376455e-c6d3-44b9-a844-076c703033de"
+ ],
+ "x-ms-correlation-request-id": [
+ "b376455e-c6d3-44b9-a844-076c703033de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215347Z:b376455e-c6d3-44b9-a844-076c703033de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:47 GMT"
+ ]
+ },
+ "StatusCode": 404
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzU/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": [
+ "14673"
+ ],
+ "x-ms-request-id": [
+ "32ca4187-f960-4016-b56d-8b0c4b3d1c8e"
+ ],
+ "x-ms-correlation-request-id": [
+ "32ca4187-f960-4016-b56d-8b0c4b3d1c8e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220908Z:32ca4187-f960-4016-b56d-8b0c4b3d1c8e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:09:07 GMT"
+ ]
+ },
+ "StatusCode": 204
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzU/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/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075\",\r\n \"name\": \"crptestps2075\",\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": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "3550379a-28f2-4781-89cc-ba2bcd55b7c7"
+ ],
+ "x-ms-correlation-request-id": [
+ "3550379a-28f2-4781-89cc-ba2bcd55b7c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215349Z:3550379a-28f2-4781-89cc-ba2bcd55b7c7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:48 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNzUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "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": [
+ "14653"
+ ],
+ "x-ms-request-id": [
+ "0ce5f854-9b03-4b79-9a09-b9cc6fc3d858"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ce5f854-9b03-4b79-9a09-b9cc6fc3d858"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215349Z:0ce5f854-9b03-4b79-9a09-b9cc6fc3d858"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:48 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
+ "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:2dbcbae5-c634-4bac-a0cb-a2c9a62c2976"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14655"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2b98058-94a1-4b7e-8d24-edeb19edb14c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215349Z:c2b98058-94a1-4b7e-8d24-edeb19edb14c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:49 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/providers/microsoft.resources/deployments/crptestps2075dp/validate?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvcHJvdmlkZXJzL21pY3Jvc29mdC5yZXNvdXJjZXMvZGVwbG95bWVudHMvY3JwdGVzdHBzMjA3NWRwL3ZhbGlkYXRlP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "POST",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"adminUsername\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Admin username for VM\"\r\n }\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\",\r\n \"metadata\": {\r\n \"description\": \"Admin password for VM\"\r\n }\r\n },\r\n \"newStorageAccountName\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Unique storage account name\"\r\n }\r\n },\r\n \"numberOfInstances\": {\r\n \"type\": \"int\",\r\n \"defaultValue\": 2,\r\n \"metadata\": {\r\n \"description\": \"Number of VMs to deploy\"\r\n }\r\n },\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Location to deploy the VM in\"\r\n }\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Size of the Virtual Machine.\"\r\n }\r\n },\r\n \"imagePublisher\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Canonical\",\r\n \"metadata\": {\r\n \"description\": \"Image Publisher\"\r\n }\r\n },\r\n \"imageOffer\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"UbuntuServer\",\r\n \"metadata\": {\r\n \"description\": \"Image Offer\"\r\n }\r\n },\r\n \"imageSKU\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"14.04.2-LTS\",\r\n \"metadata\": {\r\n \"description\": \"Image SKU\"\r\n }\r\n }\r\n },\r\n \"variables\": {\r\n \"virtualNetworkName\": \"myVNET\",\r\n \"vnetID\": \"[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]\",\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"subnet1Name\": \"Subnet-1\",\r\n \"subnet1Prefix\": \"10.0.0.0/24\",\r\n \"subnet1Ref\": \"[concat(variables('vnetID'),'/subnets/', variables('subnet1Name'))]\",\r\n \"vmStorageAccountContainerName\": \"vhds\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('newStorageAccountName')]\",\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"name\": \"[variables('virtualNetworkName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"[variables('addressPrefix')]\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"[variables('subnet1Name')]\",\r\n \"properties\": {\r\n \"addressPrefix\": \"[variables('subnet1Prefix')]\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"name\": \"[concat('publicIP', copyIndex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"publicIPLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"name\": \"[concat('nic', copyindex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"nicLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]\",\r\n \"[concat('Microsoft.Network/publicIPAddresses/', 'publicIP', copyindex())]\"\r\n ],\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"[resourceId('Microsoft.Network/publicIPAddresses',concat('publicIP', copyindex()))]\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"[variables('subnet1Ref')]\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"name\": \"[concat('myvm', copyIndex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"virtualMachineLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Network/networkInterfaces/', 'nic', copyindex())]\",\r\n \"[concat('Microsoft.Storage/storageAccounts/', parameters('newStorageAccountName'))]\"\r\n ],\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"osProfile\": {\r\n \"computername\": \"[concat('vm', copyIndex())]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"[parameters('imagePublisher')]\",\r\n \"offer\": \"[parameters('imageOffer')]\",\r\n \"sku\": \"[parameters('imageSKU')]\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osdisk\",\r\n \"vhd\": {\r\n \"uri\": \"[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net/vhds/','osdisk', copyIndex(), '.vhd')]\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[resourceId('Microsoft.Network/networkInterfaces',concat('nic', copyindex()))]\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"newStorageAccountName\": {\r\n \"value\": \"crptestps2075sto\"\r\n },\r\n \"numberOfInstances\": {\r\n \"value\": 51\r\n },\r\n \"adminUsername\": {\r\n \"value\": \"Foo12\"\r\n },\r\n \"vmSize\": {\r\n \"value\": \"Standard_A0\"\r\n },\r\n \"adminPassword\": {\r\n \"value\": \"BaR@123crptestps2075\"\r\n },\r\n \"location\": {\r\n \"value\": \"westus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "7183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp\",\r\n \"name\": \"crptestps2075dp\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"Foo12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"newStorageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"crptestps2075sto\"\r\n },\r\n \"numberOfInstances\": {\r\n \"type\": \"Int\",\r\n \"value\": 51\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_A0\"\r\n },\r\n \"imagePublisher\": {\r\n \"type\": \"String\",\r\n \"value\": \"Canonical\"\r\n },\r\n \"imageOffer\": {\r\n \"type\": \"String\",\r\n \"value\": \"UbuntuServer\"\r\n },\r\n \"imageSKU\": {\r\n \"type\": \"String\",\r\n \"value\": \"14.04.2-LTS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-07T21:53:51.1549655Z\",\r\n \"duration\": \"PT0S\",\r\n \"correlationId\": \"32c499e2-132f-43aa-adf4-acba4e9f2589\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP0\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP0\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP1\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP1\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP2\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP3\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP3\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP4\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP4\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP5\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP5\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP6\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP6\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP7\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP7\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP8\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP8\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP9\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP9\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP10\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP10\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP11\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP11\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP12\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP12\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP13\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP13\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP14\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP14\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP15\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP15\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP16\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP16\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP17\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP17\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP18\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP18\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP19\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP20\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP20\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP21\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP21\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP22\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP22\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP23\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP23\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP24\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP24\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP25\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP25\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP26\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP26\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP27\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP27\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP28\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP28\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP29\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP29\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP30\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP30\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP31\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP31\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP32\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP32\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP33\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP33\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP34\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP34\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP35\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP35\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP36\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP36\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP37\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP37\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP38\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP38\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP39\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP39\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP40\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP40\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP41\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP41\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP42\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP42\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP43\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP43\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP44\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP44\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP45\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP45\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP46\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP46\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP47\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP47\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP48\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP48\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP49\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP49\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP50\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP50\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm50\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "70561"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1198"
+ ],
+ "x-ms-request-id": [
+ "32c499e2-132f-43aa-adf4-acba4e9f2589"
+ ],
+ "x-ms-correlation-request-id": [
+ "32c499e2-132f-43aa-adf4-acba4e9f2589"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215351Z:32c499e2-132f-43aa-adf4-acba4e9f2589"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:50 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/deployments/crptestps2075dp?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvZGVwbG95bWVudHMvY3JwdGVzdHBzMjA3NWRwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"properties\": {\r\n \"template\": {\r\n \"$schema\": \"https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#\",\r\n \"contentVersion\": \"1.0.0.0\",\r\n \"parameters\": {\r\n \"adminUsername\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Admin username for VM\"\r\n }\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"securestring\",\r\n \"metadata\": {\r\n \"description\": \"Admin password for VM\"\r\n }\r\n },\r\n \"newStorageAccountName\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Unique storage account name\"\r\n }\r\n },\r\n \"numberOfInstances\": {\r\n \"type\": \"int\",\r\n \"defaultValue\": 2,\r\n \"metadata\": {\r\n \"description\": \"Number of VMs to deploy\"\r\n }\r\n },\r\n \"location\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Location to deploy the VM in\"\r\n }\r\n },\r\n \"vmSize\": {\r\n \"type\": \"string\",\r\n \"metadata\": {\r\n \"description\": \"Size of the Virtual Machine.\"\r\n }\r\n },\r\n \"imagePublisher\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"Canonical\",\r\n \"metadata\": {\r\n \"description\": \"Image Publisher\"\r\n }\r\n },\r\n \"imageOffer\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"UbuntuServer\",\r\n \"metadata\": {\r\n \"description\": \"Image Offer\"\r\n }\r\n },\r\n \"imageSKU\": {\r\n \"type\": \"string\",\r\n \"defaultValue\": \"14.04.2-LTS\",\r\n \"metadata\": {\r\n \"description\": \"Image SKU\"\r\n }\r\n }\r\n },\r\n \"variables\": {\r\n \"virtualNetworkName\": \"myVNET\",\r\n \"vnetID\": \"[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]\",\r\n \"addressPrefix\": \"10.0.0.0/16\",\r\n \"subnet1Name\": \"Subnet-1\",\r\n \"subnet1Prefix\": \"10.0.0.0/24\",\r\n \"subnet1Ref\": \"[concat(variables('vnetID'),'/subnets/', variables('subnet1Name'))]\",\r\n \"vmStorageAccountContainerName\": \"vhds\"\r\n },\r\n \"resources\": [\r\n {\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"name\": \"[parameters('newStorageAccountName')]\",\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_LRS\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"name\": \"[variables('virtualNetworkName')]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"[variables('addressPrefix')]\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"[variables('subnet1Name')]\",\r\n \"properties\": {\r\n \"addressPrefix\": \"[variables('subnet1Prefix')]\"\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"name\": \"[concat('publicIP', copyIndex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"publicIPLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\"\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Network/networkInterfaces\",\r\n \"name\": \"[concat('nic', copyindex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"nicLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]\",\r\n \"[concat('Microsoft.Network/publicIPAddresses/', 'publicIP', copyindex())]\"\r\n ],\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ipconfig1\",\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"[resourceId('Microsoft.Network/publicIPAddresses',concat('publicIP', copyindex()))]\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"[variables('subnet1Ref')]\"\r\n }\r\n }\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"apiVersion\": \"2015-05-01-preview\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"name\": \"[concat('myvm', copyIndex())]\",\r\n \"location\": \"[parameters('location')]\",\r\n \"copy\": {\r\n \"name\": \"virtualMachineLoop\",\r\n \"count\": \"[parameters('numberOfInstances')]\"\r\n },\r\n \"dependsOn\": [\r\n \"[concat('Microsoft.Network/networkInterfaces/', 'nic', copyindex())]\",\r\n \"[concat('Microsoft.Storage/storageAccounts/', parameters('newStorageAccountName'))]\"\r\n ],\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"[parameters('vmSize')]\"\r\n },\r\n \"osProfile\": {\r\n \"computername\": \"[concat('vm', copyIndex())]\",\r\n \"adminUsername\": \"[parameters('adminUsername')]\",\r\n \"adminPassword\": \"[parameters('adminPassword')]\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"[parameters('imagePublisher')]\",\r\n \"offer\": \"[parameters('imageOffer')]\",\r\n \"sku\": \"[parameters('imageSKU')]\",\r\n \"version\": \"latest\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osdisk\",\r\n \"vhd\": {\r\n \"uri\": \"[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net/vhds/','osdisk', copyIndex(), '.vhd')]\"\r\n },\r\n \"caching\": \"ReadWrite\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"[resourceId('Microsoft.Network/networkInterfaces',concat('nic', copyindex()))]\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n },\r\n \"parameters\": {\r\n \"newStorageAccountName\": {\r\n \"value\": \"crptestps2075sto\"\r\n },\r\n \"numberOfInstances\": {\r\n \"value\": 51\r\n },\r\n \"adminUsername\": {\r\n \"value\": \"Foo12\"\r\n },\r\n \"vmSize\": {\r\n \"value\": \"Standard_A0\"\r\n },\r\n \"adminPassword\": {\r\n \"value\": \"BaR@123crptestps2075\"\r\n },\r\n \"location\": {\r\n \"value\": \"westus\"\r\n }\r\n },\r\n \"mode\": \"Incremental\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "7183"
+ ],
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp\",\r\n \"name\": \"crptestps2075dp\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"Foo12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"newStorageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"crptestps2075sto\"\r\n },\r\n \"numberOfInstances\": {\r\n \"type\": \"Int\",\r\n \"value\": 51\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_A0\"\r\n },\r\n \"imagePublisher\": {\r\n \"type\": \"String\",\r\n \"value\": \"Canonical\"\r\n },\r\n \"imageOffer\": {\r\n \"type\": \"String\",\r\n \"value\": \"UbuntuServer\"\r\n },\r\n \"imageSKU\": {\r\n \"type\": \"String\",\r\n \"value\": \"14.04.2-LTS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Accepted\",\r\n \"timestamp\": \"2015-08-07T21:53:51.8910972Z\",\r\n \"duration\": \"PT0.262359S\",\r\n \"correlationId\": \"67daa37a-80bd-4580-a21c-c0538f83c6b0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP0\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP0\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP1\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP1\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP2\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP3\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP3\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP4\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP4\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP5\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP5\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP6\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP6\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP7\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP7\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP8\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP8\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP9\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP9\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP10\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP10\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP11\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP11\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP12\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP12\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP13\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP13\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP14\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP14\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP15\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP15\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP16\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP16\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP17\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP17\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP18\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP18\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP19\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP20\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP20\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP21\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP21\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP22\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP22\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP23\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP23\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP24\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP24\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP25\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP25\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP26\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP26\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP27\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP27\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP28\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP28\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP29\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP29\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP30\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP30\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP31\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP31\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP32\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP32\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP33\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP33\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP34\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP34\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP35\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP35\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP36\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP36\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP37\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP37\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP38\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP38\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP39\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP39\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP40\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP40\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP41\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP41\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP42\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP42\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP43\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP43\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP44\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP44\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP45\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP45\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP46\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP46\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP47\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP47\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP48\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP48\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP49\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP49\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP50\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP50\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm50\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "70568"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-request-id": [
+ "67daa37a-80bd-4580-a21c-c0538f83c6b0"
+ ],
+ "x-ms-correlation-request-id": [
+ "67daa37a-80bd-4580-a21c-c0538f83c6b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215351Z:67daa37a-80bd-4580-a21c-c0538f83c6b0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:51 GMT"
+ ]
+ },
+ "StatusCode": 201
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/deployments/crptestps2075dp/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvZGVwbG95bWVudHMvY3JwdGVzdHBzMjA3NWRwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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": [
+ "14651"
+ ],
+ "x-ms-request-id": [
+ "15cb8120-d356-46d4-813a-bed4582a4065"
+ ],
+ "x-ms-correlation-request-id": [
+ "15cb8120-d356-46d4-813a-bed4582a4065"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T215352Z:15cb8120-d356-46d4-813a-bed4582a4065"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 21:53:51 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/deployments/crptestps2075dp/operations?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvZGVwbG95bWVudHMvY3JwdGVzdHBzMjA3NWRwL29wZXJhdGlvbnM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "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/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/049AAA3465E61768\",\r\n \"operationId\": \"049AAA3465E61768\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:21.0569287Z\",\r\n \"duration\": \"PT4M47.8472417S\",\r\n \"trackingId\": \"c731010c-399f-459c-9cd1-6602d2dec3f4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm9\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/A945980D836BB543\",\r\n \"operationId\": \"A945980D836BB543\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:47.0493875Z\",\r\n \"duration\": \"PT6M12.6627826S\",\r\n \"trackingId\": \"750fccab-14b3-4de3-853f-2b652f60a979\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm11\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2FA2C1BEC979C9E7\",\r\n \"operationId\": \"2FA2C1BEC979C9E7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:00.4083129Z\",\r\n \"duration\": \"PT4M27.0796434S\",\r\n \"trackingId\": \"34dd97af-946e-4fcf-a9a2-ee8bc5d13eb4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm23\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8AAD61D1B6B15DF1\",\r\n \"operationId\": \"8AAD61D1B6B15DF1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:14.5632097Z\",\r\n \"duration\": \"PT4M40.1865381S\",\r\n \"trackingId\": \"1139bd7b-0408-48d5-a5ce-471e3fa084cc\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm16\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/6A7B6BD93DFF5AA1\",\r\n \"operationId\": \"6A7B6BD93DFF5AA1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:31.2668958Z\",\r\n \"duration\": \"PT4M57.4521237S\",\r\n \"trackingId\": \"ac1824cc-c808-47c8-a3b9-510ac2bfea5c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm7\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/6AC48B14B7E46B69\",\r\n \"operationId\": \"6AC48B14B7E46B69\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:03.1359603Z\",\r\n \"duration\": \"PT3M29.4002617S\",\r\n \"trackingId\": \"ea661cbd-6a42-45f6-8345-6598cb34f3f6\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm37\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0291D5940D7624D8\",\r\n \"operationId\": \"0291D5940D7624D8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:32.9350004Z\",\r\n \"duration\": \"PT6M0.8656007S\",\r\n \"trackingId\": \"b3294b0d-9b67-425d-841a-838c9b01f4f4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm27\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/612D83B1475D7F95\",\r\n \"operationId\": \"612D83B1475D7F95\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:19.6157966Z\",\r\n \"duration\": \"PT5M45.7895638S\",\r\n \"trackingId\": \"09eef3e5-28ee-48c3-abf0-cbafc7152db7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm41\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/23EA9E1D2B6EC537\",\r\n \"operationId\": \"23EA9E1D2B6EC537\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:03.3388136Z\",\r\n \"duration\": \"PT3M30.9172442S\",\r\n \"trackingId\": \"76ddece1-e1ae-40e8-9336-85b39fb52e28\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm35\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/36B6C1AF13131924\",\r\n \"operationId\": \"36B6C1AF13131924\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:01:57.265886Z\",\r\n \"duration\": \"PT7M24.3765535S\",\r\n \"trackingId\": \"e7ebf22c-c7e3-4dce-9b87-f22dc9e35357\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm45\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2A5C7FFE059AAC46\",\r\n \"operationId\": \"2A5C7FFE059AAC46\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:48.3448913Z\",\r\n \"duration\": \"PT5M15.471765S\",\r\n \"trackingId\": \"59c29553-9709-4e56-8331-210ed8339680\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm6\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/167D5319497F4DC4\",\r\n \"operationId\": \"167D5319497F4DC4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:13.5768872Z\",\r\n \"duration\": \"PT5M40.0608198S\",\r\n \"trackingId\": \"b2cf7ac1-7c74-4f1d-b1e4-ec3afba785ee\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm31\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/37D7429ED995F9CB\",\r\n \"operationId\": \"37D7429ED995F9CB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:23.7319131Z\",\r\n \"duration\": \"PT4M50.4275892S\",\r\n \"trackingId\": \"c42d4bf9-ce10-4505-b89a-b20dd7c8909a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm50\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8A556C544CFE5502\",\r\n \"operationId\": \"8A556C544CFE5502\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:02:17.5522867Z\",\r\n \"duration\": \"PT7M43.1879324S\",\r\n \"trackingId\": \"74eb7a01-286e-4ca8-9b91-678a4216bfbb\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm33\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E1E99C077849B654\",\r\n \"operationId\": \"E1E99C077849B654\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:25.8771092Z\",\r\n \"duration\": \"PT4M50.9673227S\",\r\n \"trackingId\": \"48120da3-8863-4ba3-8930-f85b80a75377\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm25\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/892EC61B5E6F5A53\",\r\n \"operationId\": \"892EC61B5E6F5A53\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:27.5256999Z\",\r\n \"duration\": \"PT4M53.6291271S\",\r\n \"trackingId\": \"158d4aa6-6667-4bfc-aafa-364b60448eb1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm17\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/1B46B4351B437952\",\r\n \"operationId\": \"1B46B4351B437952\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:49.097163Z\",\r\n \"duration\": \"PT5M16.9248882S\",\r\n \"trackingId\": \"b8b74142-da41-48bd-8ae3-796447f9b024\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm15\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/77066D02EBDF81D5\",\r\n \"operationId\": \"77066D02EBDF81D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:59.6535949Z\",\r\n \"duration\": \"PT5M25.7641506S\",\r\n \"trackingId\": \"a7d4073f-f659-4ac5-8bf0-8a2c35de0354\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm8\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/58D159EE6D528720\",\r\n \"operationId\": \"58D159EE6D528720\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:02:14.9728527Z\",\r\n \"duration\": \"PT7M41.1599539S\",\r\n \"trackingId\": \"1c6b3015-1ae5-42a8-8f05-eca8d71e4867\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm19\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/617520479AA7F63C\",\r\n \"operationId\": \"617520479AA7F63C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:28.1189625Z\",\r\n \"duration\": \"PT4M54.3053441S\",\r\n \"trackingId\": \"2be45f3d-0634-4a57-811a-d53ef3571499\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm24\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/69B77F408FD3E860\",\r\n \"operationId\": \"69B77F408FD3E860\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:02:27.4416253Z\",\r\n \"duration\": \"PT7M53.6280045S\",\r\n \"trackingId\": \"2ed3633b-f61a-4b50-bb90-4052b086dd3c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm20\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/25AC8D4CAF68D87E\",\r\n \"operationId\": \"25AC8D4CAF68D87E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:08.1313488Z\",\r\n \"duration\": \"PT4M35.1130122S\",\r\n \"trackingId\": \"74b1e5e3-bfdc-4c67-a2dd-641749159473\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm22\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/F23CA076917B04FC\",\r\n \"operationId\": \"F23CA076917B04FC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:09.0272207Z\",\r\n \"duration\": \"PT3M34.1675354S\",\r\n \"trackingId\": \"f6fab860-0dcf-4202-8d30-2cd4c3b13664\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm48\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/447DD1BE57C4B1AF\",\r\n \"operationId\": \"447DD1BE57C4B1AF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:25.135555Z\",\r\n \"duration\": \"PT4M51.8833192S\",\r\n \"trackingId\": \"f569d1fe-ebf8-4a38-93e8-4508afc7cac1\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm10\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0F729D13F98A8D2F\",\r\n \"operationId\": \"0F729D13F98A8D2F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:04.4488494Z\",\r\n \"duration\": \"PT3M25.8666668S\",\r\n \"trackingId\": \"2b4c0675-506f-4ab4-847c-cd7fe510caba\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm36\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/BE970A9280BD7BA2\",\r\n \"operationId\": \"BE970A9280BD7BA2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:41.8925989Z\",\r\n \"duration\": \"PT5M7.4808442S\",\r\n \"trackingId\": \"b6797c1c-1257-4883-bace-8f887515e7e7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm44\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DD78CFC1266D5B38\",\r\n \"operationId\": \"DD78CFC1266D5B38\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:24.6848568Z\",\r\n \"duration\": \"PT4M49.7149284S\",\r\n \"trackingId\": \"29cba689-f295-4c52-ab20-1e377b16d45d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm26\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5E618D5B241FA51C\",\r\n \"operationId\": \"5E618D5B241FA51C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:17.3302831Z\",\r\n \"duration\": \"PT5M43.5037164S\",\r\n \"trackingId\": \"00e3b2b0-eb42-44dd-bc62-2b14d54b6548\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm34\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/270035DB813FE13A\",\r\n \"operationId\": \"270035DB813FE13A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:01:00.3576499Z\",\r\n \"duration\": \"PT6M26.5313358S\",\r\n \"trackingId\": \"7fe422d8-5e7a-4db6-997f-12558a1dd835\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm12\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/4D59BF97825D3039\",\r\n \"operationId\": \"4D59BF97825D3039\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:24.5882439Z\",\r\n \"duration\": \"PT4M51.6756663S\",\r\n \"trackingId\": \"7ee79a8a-39ba-49f3-bc2b-7e9211575b74\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm5\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/B5EBB25C28C6790D\",\r\n \"operationId\": \"B5EBB25C28C6790D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:14.1283862Z\",\r\n \"duration\": \"PT4M39.7069118S\",\r\n \"trackingId\": \"560f9d8a-9b4a-44f5-917c-cb29ce5b2dba\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm38\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E210B394D1AA214E\",\r\n \"operationId\": \"E210B394D1AA214E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:02:09.9540564Z\",\r\n \"duration\": \"PT7M35.0337938S\",\r\n \"trackingId\": \"8197637d-4b76-4351-9d4c-4ff83ef54bae\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm30\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/C8085B886538B405\",\r\n \"operationId\": \"C8085B886538B405\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:44.7922773Z\",\r\n \"duration\": \"PT3M9.9036845S\",\r\n \"trackingId\": \"e840ff40-0667-4e61-a444-ec74408d1dc3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm40\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/D0409FD48E6EBA56\",\r\n \"operationId\": \"D0409FD48E6EBA56\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:58.7070867Z\",\r\n \"duration\": \"PT5M23.8047942S\",\r\n \"trackingId\": \"1a829f81-3966-4ea5-ada2-15ad9f4f6e93\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm47\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/664D601D446F2911\",\r\n \"operationId\": \"664D601D446F2911\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:50.2426432Z\",\r\n \"duration\": \"PT4M16.4293762S\",\r\n \"trackingId\": \"ccc00427-e079-4a7c-8e0b-00ea07774151\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm39\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2E67486FE0640D58\",\r\n \"operationId\": \"2E67486FE0640D58\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:09.4844876Z\",\r\n \"duration\": \"PT5M35.4544729S\",\r\n \"trackingId\": \"2ce91fed-0e1a-44c5-a370-bd718ce956d4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm3\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E6B2D9654873DED2\",\r\n \"operationId\": \"E6B2D9654873DED2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:59.1061734Z\",\r\n \"duration\": \"PT3M24.1837499S\",\r\n \"trackingId\": \"ee02ced7-7e45-40af-adfd-8284968ed7f4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/C1BBD80DC79F2527\",\r\n \"operationId\": \"C1BBD80DC79F2527\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:03.8833386Z\",\r\n \"duration\": \"PT3M28.9917784S\",\r\n \"trackingId\": \"e462e030-fe3f-45eb-8352-b7eaa03102ff\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm43\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/B358AC278FE738FF\",\r\n \"operationId\": \"B358AC278FE738FF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:56.8360955Z\",\r\n \"duration\": \"PT3M22.4537585S\",\r\n \"trackingId\": \"f4a76133-3e29-4587-b79d-423c193ac8b0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm46\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/07E2BB7490EC3221\",\r\n \"operationId\": \"07E2BB7490EC3221\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:05.9712488Z\",\r\n \"duration\": \"PT3M33.824566S\",\r\n \"trackingId\": \"45199930-fa51-433c-95a0-9d174205f194\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm18\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/561F6705DF148F43\",\r\n \"operationId\": \"561F6705DF148F43\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:23.3098536Z\",\r\n \"duration\": \"PT4M50.3792695S\",\r\n \"trackingId\": \"94bac442-81de-4d53-bd4c-bdcef64c1874\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DA0A1BE656339E5A\",\r\n \"operationId\": \"DA0A1BE656339E5A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:37.9592876Z\",\r\n \"duration\": \"PT13.8268673S\",\r\n \"trackingId\": \"8abf7077-f46a-4139-9574-dd12a098170e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/D6EDFFA99B1D40CB\",\r\n \"operationId\": \"D6EDFFA99B1D40CB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:27.8243357Z\",\r\n \"duration\": \"PT5M52.9107232S\",\r\n \"trackingId\": \"0e686a32-70ab-4598-bbe6-c721ec2c33e7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm42\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/FDD68794B012D852\",\r\n \"operationId\": \"FDD68794B012D852\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:37.2496777Z\",\r\n \"duration\": \"PT6M1.8111488S\",\r\n \"trackingId\": \"562eacb5-6b77-443e-a423-8b99aa5aa5fe\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm0\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/B95AD11B732E2440\",\r\n \"operationId\": \"B95AD11B732E2440\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:00:30.4822809Z\",\r\n \"duration\": \"PT5M56.0478802S\",\r\n \"trackingId\": \"47463461-3d01-487b-a9e6-81c2e060e1a3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm29\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/15D0A60F82A753D0\",\r\n \"operationId\": \"15D0A60F82A753D0\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:26.7412311Z\",\r\n \"duration\": \"PT2M52.4072307S\",\r\n \"trackingId\": \"7c7c0fd0-35a2-4579-a671-54bd15cb3ae3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm32\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/470F1626B2212715\",\r\n \"operationId\": \"470F1626B2212715\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:58:03.0958476Z\",\r\n \"duration\": \"PT3M28.826226S\",\r\n \"trackingId\": \"a9616f6c-034c-4499-a1c8-943e53bbc799\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm4\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/BD75E32CDD10F4BE\",\r\n \"operationId\": \"BD75E32CDD10F4BE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:57.9695476Z\",\r\n \"duration\": \"PT3M23.5613025S\",\r\n \"trackingId\": \"01132ac1-c200-426b-b3dd-c8fa9d000fb5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm28\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/B7CF27DDF22EE15D\",\r\n \"operationId\": \"B7CF27DDF22EE15D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:30.4006888Z\",\r\n \"duration\": \"PT2M56.0108731S\",\r\n \"trackingId\": \"f03b285a-26d0-41eb-b4d8-bc783827119e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm13\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/923EEBF3B40E5441\",\r\n \"operationId\": \"923EEBF3B40E5441\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:34.6032901Z\",\r\n \"duration\": \"PT4M59.5893474S\",\r\n \"trackingId\": \"d27d2ebb-b688-4056-8b2b-fb7d74a60ec2\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm21\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/1656F11D34E2FB44\",\r\n \"operationId\": \"1656F11D34E2FB44\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:59:24.3699981Z\",\r\n \"duration\": \"PT4M49.4605686S\",\r\n \"trackingId\": \"b316b504-9166-4853-9936-cab48b63bfc0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm14\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/CA94632FC04EF4EA\",\r\n \"operationId\": \"CA94632FC04EF4EA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:57:46.383203Z\",\r\n \"duration\": \"PT3M11.4089228S\",\r\n \"trackingId\": \"1806ef86-5aa1-4ef8-bbdc-a96f0ca76253\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm49\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/A1FF1FC54B97B040\",\r\n \"operationId\": \"A1FF1FC54B97B040\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:34.3641957Z\",\r\n \"duration\": \"PT10.8731257S\",\r\n \"trackingId\": \"818841de-1080-4395-a183-ed0837c024e1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2E2893967931449A\",\r\n \"operationId\": \"2E2893967931449A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:34.2684579Z\",\r\n \"duration\": \"PT12.1692888S\",\r\n \"trackingId\": \"82105211-2326-4f3f-8aaf-2e696a37038a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/A38C61974E7255DB\",\r\n \"operationId\": \"A38C61974E7255DB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:34.2155054Z\",\r\n \"duration\": \"PT10.7252528S\",\r\n \"trackingId\": \"ccf8e592-4d41-44bd-a216-9d426e3cae07\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2D39A2FCF4DBC0B7\",\r\n \"operationId\": \"2D39A2FCF4DBC0B7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:34.1885996Z\",\r\n \"duration\": \"PT12.0933377S\",\r\n \"trackingId\": \"f580d637-4592-4ab9-9895-c0577e199bf1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/43FF9C1B7B12F9EF\",\r\n \"operationId\": \"43FF9C1B7B12F9EF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:34.1302451Z\",\r\n \"duration\": \"PT11.9265167S\",\r\n \"trackingId\": \"3b0e8bdb-2836-4b4a-8465-01f3bd9cfd1e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/748721C7840DD486\",\r\n \"operationId\": \"748721C7840DD486\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.9886985Z\",\r\n \"duration\": \"PT11.2819611S\",\r\n \"trackingId\": \"c8b2c46e-6754-49eb-ae17-dcd3b73f9bab\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/30C7AF22BCC0BBCB\",\r\n \"operationId\": \"30C7AF22BCC0BBCB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.929744Z\",\r\n \"duration\": \"PT11.8290897S\",\r\n \"trackingId\": \"f21f29c7-9b84-42ba-b5b7-7e60ad9de4a7\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/6DB66C7D51B2EEF2\",\r\n \"operationId\": \"6DB66C7D51B2EEF2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.8141297Z\",\r\n \"duration\": \"PT11.1081188S\",\r\n \"trackingId\": \"80959be2-baf5-4c75-b392-defd817937cf\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/77005B41491D564C\",\r\n \"operationId\": \"77005B41491D564C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.7088105Z\",\r\n \"duration\": \"PT10.7385927S\",\r\n \"trackingId\": \"c188006a-2faa-4768-ba4e-07628273a271\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/3F1BB0D417F9CFFC\",\r\n \"operationId\": \"3F1BB0D417F9CFFC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.6114812Z\",\r\n \"duration\": \"PT11.4976959S\",\r\n \"trackingId\": \"7072265d-56d4-4052-9d3f-248825b9b574\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5A7C086ADE66B72B\",\r\n \"operationId\": \"5A7C086ADE66B72B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.4274645Z\",\r\n \"duration\": \"PT10.7634658S\",\r\n \"trackingId\": \"ec1a7acf-0afd-4e47-a048-6d10a822a9dd\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5C5344004E9FBB5D\",\r\n \"operationId\": \"5C5344004E9FBB5D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.3898729Z\",\r\n \"duration\": \"PT10.6856366S\",\r\n \"trackingId\": \"a694757a-cccd-4f78-82b4-ee19ad62c188\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/9AF63800F32F45A8\",\r\n \"operationId\": \"9AF63800F32F45A8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.255397Z\",\r\n \"duration\": \"PT9.7721076S\",\r\n \"trackingId\": \"5125bf6c-e32d-4eb0-b112-4e143c51a8ee\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5B109BE61246941C\",\r\n \"operationId\": \"5B109BE61246941C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.2236003Z\",\r\n \"duration\": \"PT10.5550956S\",\r\n \"trackingId\": \"0a18ebf4-4f4e-4a85-b286-3a30a517ea9d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/7B70C475F44709FA\",\r\n \"operationId\": \"7B70C475F44709FA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.1519479Z\",\r\n \"duration\": \"PT9.6868928S\",\r\n \"trackingId\": \"a4bc6378-b0e0-4b38-82a3-225001870780\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/332D29EEB7BD3AF5\",\r\n \"operationId\": \"332D29EEB7BD3AF5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:33.1006088Z\",\r\n \"duration\": \"PT10.9879146S\",\r\n \"trackingId\": \"2c6d08af-546c-429e-9dfa-d3e54429de72\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/029852DE40F5CF17\",\r\n \"operationId\": \"029852DE40F5CF17\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.604705Z\",\r\n \"duration\": \"PT11.3842319S\",\r\n \"trackingId\": \"7a5c94de-fd8e-453b-b257-d70a85227790\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8F7701EC65761BC1\",\r\n \"operationId\": \"8F7701EC65761BC1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.5973112Z\",\r\n \"duration\": \"PT9.1293492S\",\r\n \"trackingId\": \"a260950a-a5ea-4e8f-8612-157a284763de\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/26A9F309004FA80C\",\r\n \"operationId\": \"26A9F309004FA80C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.3213237Z\",\r\n \"duration\": \"PT10.6818035S\",\r\n \"trackingId\": \"2c4353fe-f4cd-43dc-8461-cdba6be3b4cc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/AE0240F500C4BEEB\",\r\n \"operationId\": \"AE0240F500C4BEEB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.3195208Z\",\r\n \"duration\": \"PT8.8187505S\",\r\n \"trackingId\": \"778b06c6-40d7-427a-998b-47decab2ad72\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/7A27EC8ECA2A1489\",\r\n \"operationId\": \"7A27EC8ECA2A1489\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.3100483Z\",\r\n \"duration\": \"PT8.8542882S\",\r\n \"trackingId\": \"3c870451-2ab3-48ac-b244-6e722814fcbc\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/22B70EC5D2012C5D\",\r\n \"operationId\": \"22B70EC5D2012C5D\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.1334051Z\",\r\n \"duration\": \"PT10.7416445S\",\r\n \"trackingId\": \"68c43a4b-66f3-4c06-b013-51502e384987\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/31A4ACF6927556CA\",\r\n \"operationId\": \"31A4ACF6927556CA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:32.0238769Z\",\r\n \"duration\": \"PT9.9167886S\",\r\n \"trackingId\": \"cfa97e6e-8144-4e18-814b-e2bb341e233f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/80AD532C57E7968B\",\r\n \"operationId\": \"80AD532C57E7968B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.9256716Z\",\r\n \"duration\": \"PT8.458853S\",\r\n \"trackingId\": \"6e0ef4a8-7b82-47e0-954c-cf168ea18c97\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5E13BD90194D9915\",\r\n \"operationId\": \"5E13BD90194D9915\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.8494546Z\",\r\n \"duration\": \"PT9.1442379S\",\r\n \"trackingId\": \"5f556c50-cc00-40d5-ab92-cc1fc190edde\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E07CF5E9E48B88D5\",\r\n \"operationId\": \"E07CF5E9E48B88D5\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.4412123Z\",\r\n \"duration\": \"PT7.3109703S\",\r\n \"trackingId\": \"31edf8b6-06e5-467e-88dc-405ddee8ecbd\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/A0D163059F92DCEE\",\r\n \"operationId\": \"A0D163059F92DCEE\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.3896188Z\",\r\n \"duration\": \"PT7.902965S\",\r\n \"trackingId\": \"2f7532d0-4062-4524-8748-90545f90a2be\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5C5D71E486E6C806\",\r\n \"operationId\": \"5C5D71E486E6C806\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.2230769Z\",\r\n \"duration\": \"PT8.517087S\",\r\n \"trackingId\": \"b7546927-d8e4-4cb4-936e-4d6d362a6cef\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/69BECE51446D3A41\",\r\n \"operationId\": \"69BECE51446D3A41\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.2165468Z\",\r\n \"duration\": \"PT8.5037693S\",\r\n \"trackingId\": \"1cd60a05-aaf8-438f-be73-afb22ac6215f\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0DDE3F05481C115E\",\r\n \"operationId\": \"0DDE3F05481C115E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.1806652Z\",\r\n \"duration\": \"PT9.8231496S\",\r\n \"trackingId\": \"6da88a8f-06c9-4610-b0a3-15cc17405398\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/103E85A2A242883A\",\r\n \"operationId\": \"103E85A2A242883A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.1145219Z\",\r\n \"duration\": \"PT9.7336931S\",\r\n \"trackingId\": \"90bf8917-7ee0-4659-871c-1b47086f1dde\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0D64E72FF2D12AA6\",\r\n \"operationId\": \"0D64E72FF2D12AA6\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:30.8730377Z\",\r\n \"duration\": \"PT9.5618927S\",\r\n \"trackingId\": \"2b0539a3-4817-4621-9f2d-9fcf886b435a\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/59A3CA937940F78B\",\r\n \"operationId\": \"59A3CA937940F78B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:30.8144787Z\",\r\n \"duration\": \"PT8.1502536S\",\r\n \"trackingId\": \"4618d836-3a99-4603-9973-bcbfa314b4ce\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/038D3DEF8D4C75EB\",\r\n \"operationId\": \"038D3DEF8D4C75EB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:30.4338339Z\",\r\n \"duration\": \"PT9.2122708S\",\r\n \"trackingId\": \"1747180c-0abe-45de-a856-4090be105eff\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/068A881CE205E322\",\r\n \"operationId\": \"068A881CE205E322\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:30.2902995Z\",\r\n \"duration\": \"PT8.9573647S\",\r\n \"trackingId\": \"6a71d67c-e3d3-4292-b207-86b811f5c8ef\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/1B6871272D768B9E\",\r\n \"operationId\": \"1B6871272D768B9E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:30.2277313Z\",\r\n \"duration\": \"PT8.8915783S\",\r\n \"trackingId\": \"18df0f69-2ceb-4d9e-9d25-35e4a9cca37b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/040C9E1DD78EFBBC\",\r\n \"operationId\": \"040C9E1DD78EFBBC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.8650141Z\",\r\n \"duration\": \"PT8.6359567S\",\r\n \"trackingId\": \"bc2cfe96-362e-4ad1-b7e3-02b61780cca8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/4360C77FEADA98D8\",\r\n \"operationId\": \"4360C77FEADA98D8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.744574Z\",\r\n \"duration\": \"PT7.5445754S\",\r\n \"trackingId\": \"ff1df09b-e8b1-4b8e-8b3d-376445155909\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/41DDD7F1F11A5F37\",\r\n \"operationId\": \"41DDD7F1F11A5F37\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.4678078Z\",\r\n \"duration\": \"PT7.2688347S\",\r\n \"trackingId\": \"3d2aad81-c109-46dc-866b-a064671c8d9b\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/B3C14239F5B6A9EA\",\r\n \"operationId\": \"B3C14239F5B6A9EA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.4140565Z\",\r\n \"duration\": \"PT5.3098502S\",\r\n \"trackingId\": \"3f3a4d7c-be42-474e-8700-bfa5117f0bd0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/9E22FCE341D68140\",\r\n \"operationId\": \"9E22FCE341D68140\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.336752Z\",\r\n \"duration\": \"PT5.8541619S\",\r\n \"trackingId\": \"4fc30cb4-ff99-4874-88e3-2051c96639b1\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DE498687551D3B08\",\r\n \"operationId\": \"DE498687551D3B08\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.3213846Z\",\r\n \"duration\": \"PT5.1947142S\",\r\n \"trackingId\": \"c55e563c-c4b0-4046-9569-9203d3dd60ed\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/CB2797EB3E6FB3D1\",\r\n \"operationId\": \"CB2797EB3E6FB3D1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.2198966Z\",\r\n \"duration\": \"PT5.0846362S\",\r\n \"trackingId\": \"c5be8cb2-bad5-4e8c-89d6-0eb22d88b30d\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DFB513E147BC4A41\",\r\n \"operationId\": \"DFB513E147BC4A41\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.1083896Z\",\r\n \"duration\": \"PT4.9782524S\",\r\n \"trackingId\": \"36b96232-8284-4978-9970-1687b3ef1440\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/BB33226A435A7665\",\r\n \"operationId\": \"BB33226A435A7665\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.0687024Z\",\r\n \"duration\": \"PT4.9628075S\",\r\n \"trackingId\": \"6c1cc2d4-b67a-4932-8f1f-9f1a7f8ed242\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DBA892503F8BE34B\",\r\n \"operationId\": \"DBA892503F8BE34B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:29.001962Z\",\r\n \"duration\": \"PT4.8881344S\",\r\n \"trackingId\": \"f6774e1a-8220-4a54-84fb-cf38509402d8\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/C031492C9CE0180C\",\r\n \"operationId\": \"C031492C9CE0180C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:28.9732638Z\",\r\n \"duration\": \"PT4.5689005S\",\r\n \"trackingId\": \"711bb6b7-8382-42ee-9054-54d18cd77f5e\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E36A66F393915238\",\r\n \"operationId\": \"E36A66F393915238\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:28.7563819Z\",\r\n \"duration\": \"PT4.6056426S\",\r\n \"trackingId\": \"91e470bd-5ad1-44bc-b45c-41c81343f2c0\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/4FE3568CF0F736F8\",\r\n \"operationId\": \"4FE3568CF0F736F8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:28.6602081Z\",\r\n \"duration\": \"PT6.514784S\",\r\n \"trackingId\": \"738c77b0-f2b0-4119-ad62-8933ee04a5b9\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/EB37E2BEC8859502\",\r\n \"operationId\": \"EB37E2BEC8859502\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:27.1274689Z\",\r\n \"duration\": \"PT2.0118432S\",\r\n \"trackingId\": \"5f90db2d-f813-499b-91e9-0a29c0e8a753\",\r\n \"statusCode\": \"Created\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/1B2AADAAB076F552\",\r\n \"operationId\": \"1B2AADAAB076F552\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:20.0009967Z\",\r\n \"duration\": \"PT25.8724645S\",\r\n \"trackingId\": \"8cbcb3c0-3182-4d9b-abbe-270d08d72de3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP30\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP30\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/64139A496A0E1C87\",\r\n \"operationId\": \"64139A496A0E1C87\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.2163637Z\",\r\n \"duration\": \"PT23.9370602S\",\r\n \"trackingId\": \"2a5d18fb-a8d9-47f4-9df9-a1b9a9a16187\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP3\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP3\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5720F72D18B40E54\",\r\n \"operationId\": \"5720F72D18B40E54\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.4718254Z\",\r\n \"duration\": \"PT24.1898944S\",\r\n \"trackingId\": \"17015a37-8239-4e1a-8883-67b415eeefc0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP25\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP25\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/CD41E3BEED5FA117\",\r\n \"operationId\": \"CD41E3BEED5FA117\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.1836384Z\",\r\n \"duration\": \"PT22.618288S\",\r\n \"trackingId\": \"ea601baf-d2ec-4da2-bde2-2d2043ffce1c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP6\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP6\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/CF13F2218965E1D4\",\r\n \"operationId\": \"CF13F2218965E1D4\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:20.4734545Z\",\r\n \"duration\": \"PT23.9079521S\",\r\n \"trackingId\": \"3fb5d714-f692-42ba-9dcb-4414470cc37e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP35\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP35\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/9CA7B370974E8FBD\",\r\n \"operationId\": \"9CA7B370974E8FBD\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:20.5887643Z\",\r\n \"duration\": \"PT24.6107171S\",\r\n \"trackingId\": \"1b6849cf-f1f8-4bc4-a2de-4900b6fea0e0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/667A1441E5BD8605\",\r\n \"operationId\": \"667A1441E5BD8605\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:18.5408014Z\",\r\n \"duration\": \"PT23.2570215S\",\r\n \"trackingId\": \"576649dd-ca85-4486-8aca-5f0aec242abe\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP47\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP47\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/25CA1E667C5D7441\",\r\n \"operationId\": \"25CA1E667C5D7441\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:18.3842887Z\",\r\n \"duration\": \"PT24.4306665S\",\r\n \"trackingId\": \"ab8d7e2e-38f8-441e-816a-502b48d6bd46\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP39\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP39\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/1E29540E22A88D14\",\r\n \"operationId\": \"1E29540E22A88D14\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.8270001Z\",\r\n \"duration\": \"PT25.898545S\",\r\n \"trackingId\": \"2ccb7739-8c79-49da-9e78-64ab68666921\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP7\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP7\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2020532BD144FB2B\",\r\n \"operationId\": \"2020532BD144FB2B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.1127113Z\",\r\n \"duration\": \"PT23.1860301S\",\r\n \"trackingId\": \"db4e1507-5700-4360-af0e-3f7ef884728d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP33\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP33\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/77621B225F8D5357\",\r\n \"operationId\": \"77621B225F8D5357\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.193747Z\",\r\n \"duration\": \"PT23.9042225S\",\r\n \"trackingId\": \"0dfdd9cd-2402-40aa-b86b-2f9cdda97566\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP24\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP24\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/7B184D858BF07777\",\r\n \"operationId\": \"7B184D858BF07777\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.7054448Z\",\r\n \"duration\": \"PT22.1615284S\",\r\n \"trackingId\": \"11bd6cc2-5be9-4d5c-9c15-0ba0d1fb00ac\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP15\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP15\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0F8885889FB3237C\",\r\n \"operationId\": \"0F8885889FB3237C\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:19.1243822Z\",\r\n \"duration\": \"PT25.2416687S\",\r\n \"trackingId\": \"cd945bf4-f84a-4f3f-afcb-e7a95a4672f6\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP10\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP10\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/7C435AFDC62F032A\",\r\n \"operationId\": \"7C435AFDC62F032A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.7776036Z\",\r\n \"duration\": \"PT22.2292369S\",\r\n \"trackingId\": \"93111c19-1db3-49fd-9997-9c0899177c16\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP37\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP37\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0326CFBE221380BC\",\r\n \"operationId\": \"0326CFBE221380BC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.7343884Z\",\r\n \"duration\": \"PT24.1174652S\",\r\n \"trackingId\": \"b2eb3a8a-04ef-423c-bed2-ec173ed08aa4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP12\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP12\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/72BDCACE92BB04D7\",\r\n \"operationId\": \"72BDCACE92BB04D7\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.7369568Z\",\r\n \"duration\": \"PT20.4518907S\",\r\n \"trackingId\": \"0e1ff10c-7121-441b-87e1-8b500a179cc0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP8\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP8\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/089A59A5B4C5E6C3\",\r\n \"operationId\": \"089A59A5B4C5E6C3\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.1235387Z\",\r\n \"duration\": \"PT21.5023902S\",\r\n \"trackingId\": \"6ddf3893-3ce5-484c-9dfb-cf1bd7f2b4e0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP50\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP50\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8043FF39A5DBDB97\",\r\n \"operationId\": \"8043FF39A5DBDB97\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.0373092Z\",\r\n \"duration\": \"PT21.018104S\",\r\n \"trackingId\": \"af8ccc0a-b316-410d-aee2-051e551929e4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP32\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP32\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5426D022A9B7E785\",\r\n \"operationId\": \"5426D022A9B7E785\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.2295983Z\",\r\n \"duration\": \"PT19.9714257S\",\r\n \"trackingId\": \"74f0a6aa-9219-4dc8-a6fb-71eeb44957d7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP44\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP44\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2D6DC120E390C2DC\",\r\n \"operationId\": \"2D6DC120E390C2DC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:31.4393422Z\",\r\n \"duration\": \"PT36.9146803S\",\r\n \"trackingId\": \"5aaf92fe-1f9c-46b7-8f0e-758241f3e4a0\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/4DC62972BAE568A8\",\r\n \"operationId\": \"4DC62972BAE568A8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:16.9141443Z\",\r\n \"duration\": \"PT22.1240866S\",\r\n \"trackingId\": \"fab6d892-576c-4420-b494-0bf4f2dcf1d3\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP45\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP45\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/50D29ED1A7201546\",\r\n \"operationId\": \"50D29ED1A7201546\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.1373877Z\",\r\n \"duration\": \"PT20.3045411S\",\r\n \"trackingId\": \"635abdea-4d38-4329-bb1c-2fb71cf27b6d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP14\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP14\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/40AC1764A34E18CF\",\r\n \"operationId\": \"40AC1764A34E18CF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:18.3709517Z\",\r\n \"duration\": \"PT23.8226897S\",\r\n \"trackingId\": \"eb5e370b-4b34-48f4-b388-124bcb555401\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP28\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP28\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/5C04D96CA1C797D8\",\r\n \"operationId\": \"5C04D96CA1C797D8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.4977809Z\",\r\n \"duration\": \"PT19.2246173S\",\r\n \"trackingId\": \"dfb54dec-f3a5-45f5-befe-b5b456c93178\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP29\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP29\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/3761A8E34F9DAAD8\",\r\n \"operationId\": \"3761A8E34F9DAAD8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.6789044Z\",\r\n \"duration\": \"PT23.1405303S\",\r\n \"trackingId\": \"162d4e2b-8787-4ea2-8715-80ccfca97dcd\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP9\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP9\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8E606BCAE4370613\",\r\n \"operationId\": \"8E606BCAE4370613\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.2041409Z\",\r\n \"duration\": \"PT21.244458S\",\r\n \"trackingId\": \"c1b6edd2-0248-4709-96cc-628da8e929d9\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP23\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP23\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/4860B921B47A89C8\",\r\n \"operationId\": \"4860B921B47A89C8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.1986648Z\",\r\n \"duration\": \"PT20.3681258S\",\r\n \"trackingId\": \"7c7ce4af-f33d-4c12-9f18-86bb03bc9b85\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP49\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP49\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/3A79898AB1F2162E\",\r\n \"operationId\": \"3A79898AB1F2162E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.9934798Z\",\r\n \"duration\": \"PT19.4491487S\",\r\n \"trackingId\": \"49751359-097c-4538-8441-a8f58123fcc5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP38\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP38\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/BAD7787A4C816CA1\",\r\n \"operationId\": \"BAD7787A4C816CA1\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.7316283Z\",\r\n \"duration\": \"PT17.7444268S\",\r\n \"trackingId\": \"58cd9007-b15e-40b8-a70a-f1818002117c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP5\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP5\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/A6180FC818DD2FDC\",\r\n \"operationId\": \"A6180FC818DD2FDC\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.5559644Z\",\r\n \"duration\": \"PT17.5781122S\",\r\n \"trackingId\": \"3bb315a1-3670-4304-a97d-eeb8657b2192\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP20\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP20\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/0E583F5ADC7C7627\",\r\n \"operationId\": \"0E583F5ADC7C7627\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.1621608Z\",\r\n \"duration\": \"PT21.5317716S\",\r\n \"trackingId\": \"52be1691-5f11-45cf-b419-60a12ec4aeb7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP16\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP16\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/9462A20A8935F10A\",\r\n \"operationId\": \"9462A20A8935F10A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.7672748Z\",\r\n \"duration\": \"PT18.7946165S\",\r\n \"trackingId\": \"f134b573-ac30-489a-ada9-22d5be4f07dc\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP26\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP26\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2E1798805857516B\",\r\n \"operationId\": \"2E1798805857516B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.2817061Z\",\r\n \"duration\": \"PT20.7489741S\",\r\n \"trackingId\": \"149d454d-1c41-4ff8-8ea5-8ee3744c4ab4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP4\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP4\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/939E3A3F5FA0A2AB\",\r\n \"operationId\": \"939E3A3F5FA0A2AB\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.8837962Z\",\r\n \"duration\": \"PT17.9187601S\",\r\n \"trackingId\": \"85b58a52-a348-4af2-9cd6-9811a41e513d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP43\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP43\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/D75B947ACF997139\",\r\n \"operationId\": \"D75B947ACF997139\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:15.5352396Z\",\r\n \"duration\": \"PT18.9563343S\",\r\n \"trackingId\": \"b7ec0dce-7c61-4916-8bef-1924559c48fe\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP34\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP34\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8CE188362E1C3697\",\r\n \"operationId\": \"8CE188362E1C3697\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:18.1971241Z\",\r\n \"duration\": \"PT22.2529897S\",\r\n \"trackingId\": \"410ad77d-3e99-43d0-b794-dff0c3482a04\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP11\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP11\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/828D3E1F31B5678F\",\r\n \"operationId\": \"828D3E1F31B5678F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.038475Z\",\r\n \"duration\": \"PT21.0938705S\",\r\n \"trackingId\": \"4e52aa80-b663-4ace-8891-44f3d4e9e813\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP46\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP46\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/071426BD9BCD4711\",\r\n \"operationId\": \"071426BD9BCD4711\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.8759223Z\",\r\n \"duration\": \"PT20.2547777S\",\r\n \"trackingId\": \"81481f54-c481-4be5-ba61-32e2293c2f2c\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP40\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP40\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/8D6ED3BE291F7B8E\",\r\n \"operationId\": \"8D6ED3BE291F7B8E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.7203996Z\",\r\n \"duration\": \"PT18.7667796S\",\r\n \"trackingId\": \"00b2addc-3ec9-4e2c-a430-a13fbcfc9c04\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP27\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP27\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/FD7EDCE420A4F36B\",\r\n \"operationId\": \"FD7EDCE420A4F36B\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:17.6290835Z\",\r\n \"duration\": \"PT20.5117411S\",\r\n \"trackingId\": \"b1bd4fba-f723-4a15-9253-d404f10f6249\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP36\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP36\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/2C855639F4DBD0F9\",\r\n \"operationId\": \"2C855639F4DBD0F9\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.7836965Z\",\r\n \"duration\": \"PT20.2603124S\",\r\n \"trackingId\": \"af5c2bac-88b6-44c9-8a3d-9e34c06fdf21\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP13\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP13\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/F017411BECFD986A\",\r\n \"operationId\": \"F017411BECFD986A\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:16.5796172Z\",\r\n \"duration\": \"PT19.9802534S\",\r\n \"trackingId\": \"e74b636c-20e8-4297-b8dc-bf50a9e09e8d\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP1\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP1\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/782DA34075C5E2EF\",\r\n \"operationId\": \"782DA34075C5E2EF\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.8853866Z\",\r\n \"duration\": \"PT19.3526966S\",\r\n \"trackingId\": \"e078e69f-af7d-408f-b141-730f35b4558a\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP0\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP0\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/EB6DE098645F48A8\",\r\n \"operationId\": \"EB6DE098645F48A8\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.1647812Z\",\r\n \"duration\": \"PT16.572042S\",\r\n \"trackingId\": \"38649596-cf71-4851-b2a6-18fe95060fb7\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP2\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP2\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/F026B6FCCC466E3F\",\r\n \"operationId\": \"F026B6FCCC466E3F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:12.6489303Z\",\r\n \"duration\": \"PT15.5357381S\",\r\n \"trackingId\": \"cd979416-a4e9-487e-98e0-d2d0e6245ca4\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP22\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP22\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/F72FD88D03341243\",\r\n \"operationId\": \"F72FD88D03341243\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:13.4313662Z\",\r\n \"duration\": \"PT16.3148776S\",\r\n \"trackingId\": \"73e60342-e38a-427b-98e7-44d109c540c8\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP42\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP42\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/E8A89BE6C7DE0ADA\",\r\n \"operationId\": \"E8A89BE6C7DE0ADA\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:16.4571787Z\",\r\n \"duration\": \"PT19.8661325S\",\r\n \"trackingId\": \"ed035cff-d36f-4b9f-aac8-ba9e3e5baecd\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP17\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP17\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DA30F963A475E723\",\r\n \"operationId\": \"DA30F963A475E723\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:14.6394737Z\",\r\n \"duration\": \"PT18.0561255S\",\r\n \"trackingId\": \"8769c31d-ef74-4767-b2fc-1e0654123740\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP31\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP31\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/26F65A5791791991\",\r\n \"operationId\": \"26F65A5791791991\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:11.3775139Z\",\r\n \"duration\": \"PT16.858296S\",\r\n \"trackingId\": \"e6a6ff22-dc69-4df7-b12f-8c3e65e79b58\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP48\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP48\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/228E534BB00BEB4F\",\r\n \"operationId\": \"228E534BB00BEB4F\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:12.1713831Z\",\r\n \"duration\": \"PT18.0349757S\",\r\n \"trackingId\": \"6a5e8508-a227-4a36-bfac-14adc7a2095e\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP21\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP21\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/DEA849AD2AFA152E\",\r\n \"operationId\": \"DEA849AD2AFA152E\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:11.1587389Z\",\r\n \"duration\": \"PT14.5722857S\",\r\n \"trackingId\": \"f03b8c11-73fd-4466-846a-2c20176fb3fd\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP18\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP18\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/D300B2BD8496ED22\",\r\n \"operationId\": \"D300B2BD8496ED22\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:11.4771088Z\",\r\n \"duration\": \"PT14.9040877S\",\r\n \"trackingId\": \"fbf656ec-d48d-44b3-a277-8ab5fcf73873\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP19\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP19\"\r\n }\r\n }\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp/operations/CBA3CE57748F4B91\",\r\n \"operationId\": \"CBA3CE57748F4B91\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T21:54:10.4069675Z\",\r\n \"duration\": \"PT13.8434522S\",\r\n \"trackingId\": \"b2d4627c-76f1-435e-8a8d-12082b79e6d5\",\r\n \"statusCode\": \"OK\",\r\n \"targetResource\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP41\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP41\"\r\n }\r\n }\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "93825"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14223"
+ ],
+ "x-ms-request-id": [
+ "69b41fcb-f896-4458-85e2-e0d8968084de"
+ ],
+ "x-ms-correlation-request-id": [
+ "69b41fcb-f896-4458-85e2-e0d8968084de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220239Z:69b41fcb-f896-4458-85e2-e0d8968084de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:02:38 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075/deployments/crptestps2075dp?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzUvZGVwbG95bWVudHMvY3JwdGVzdHBzMjA3NWRwP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/deployments/crptestps2075dp\",\r\n \"name\": \"crptestps2075dp\",\r\n \"properties\": {\r\n \"parameters\": {\r\n \"adminUsername\": {\r\n \"type\": \"String\",\r\n \"value\": \"Foo12\"\r\n },\r\n \"adminPassword\": {\r\n \"type\": \"SecureString\"\r\n },\r\n \"newStorageAccountName\": {\r\n \"type\": \"String\",\r\n \"value\": \"crptestps2075sto\"\r\n },\r\n \"numberOfInstances\": {\r\n \"type\": \"Int\",\r\n \"value\": 51\r\n },\r\n \"location\": {\r\n \"type\": \"String\",\r\n \"value\": \"westus\"\r\n },\r\n \"vmSize\": {\r\n \"type\": \"String\",\r\n \"value\": \"Standard_A0\"\r\n },\r\n \"imagePublisher\": {\r\n \"type\": \"String\",\r\n \"value\": \"Canonical\"\r\n },\r\n \"imageOffer\": {\r\n \"type\": \"String\",\r\n \"value\": \"UbuntuServer\"\r\n },\r\n \"imageSKU\": {\r\n \"type\": \"String\",\r\n \"value\": \"14.04.2-LTS\"\r\n }\r\n },\r\n \"mode\": \"Incremental\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"timestamp\": \"2015-08-07T22:02:37.1603508Z\",\r\n \"duration\": \"PT8M45.5316126S\",\r\n \"correlationId\": \"67daa37a-80bd-4580-a21c-c0538f83c6b0\",\r\n \"providers\": [\r\n {\r\n \"namespace\": \"Microsoft.Storage\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"storageAccounts\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Network\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualNetworks\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"publicIPAddresses\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"networkInterfaces\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n },\r\n {\r\n \"namespace\": \"Microsoft.Compute\",\r\n \"resourceTypes\": [\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"locations\": [\r\n \"westus\"\r\n ]\r\n }\r\n ]\r\n }\r\n ],\r\n \"dependencies\": [\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP0\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP0\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP1\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP1\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP2\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP2\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP3\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP3\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP4\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP4\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP5\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP5\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP6\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP6\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP7\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP7\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP8\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP8\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP9\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP9\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP10\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP10\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP11\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP11\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP12\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP12\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP13\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP13\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP14\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP14\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP15\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP15\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP16\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP16\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP17\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP17\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP18\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP18\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP19\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP19\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP20\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP20\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP21\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP21\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP22\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP22\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP23\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP23\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP24\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP24\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP25\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP25\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP26\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP26\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP27\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP27\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP28\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP28\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP29\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP29\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP30\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP30\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP31\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP31\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP32\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP32\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP33\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP33\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP34\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP34\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP35\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP35\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP36\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP36\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP37\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP37\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP38\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP38\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP39\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP39\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP40\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP40\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP41\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP41\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP42\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP42\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP43\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP43\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP44\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP44\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP45\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP45\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP46\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP46\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP47\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP47\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP48\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP48\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP49\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP49\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/virtualNetworks/myVNET\",\r\n \"resourceType\": \"Microsoft.Network/virtualNetworks\",\r\n \"resourceName\": \"myVNET\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/publicIPAddresses/publicIP50\",\r\n \"resourceType\": \"Microsoft.Network/publicIPAddresses\",\r\n \"resourceName\": \"publicIP50\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic0\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm0\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic1\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm1\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic2\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm2\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic3\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm3\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic4\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm4\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic5\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm5\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic6\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm6\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic7\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm7\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic8\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm8\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic9\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm9\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic10\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm10\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic11\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm11\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic12\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm12\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic13\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm13\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic14\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm14\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic15\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm15\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic16\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm16\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic17\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm17\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic18\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm18\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic19\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm19\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic20\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm20\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic21\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm21\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic22\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm22\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic23\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm23\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic24\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm24\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic25\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm25\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic26\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm26\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic27\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm27\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic28\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm28\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic29\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm29\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic30\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm30\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic31\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm31\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic32\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm32\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic33\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm33\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic34\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm34\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic35\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm35\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic36\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm36\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic37\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm37\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic38\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm38\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic39\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm39\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic40\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm40\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic41\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm41\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic42\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm42\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic43\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm43\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic44\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm44\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic45\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm45\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic46\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm46\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic47\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm47\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic48\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm48\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic49\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm49\"\r\n },\r\n {\r\n \"dependsOn\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\",\r\n \"resourceType\": \"Microsoft.Network/networkInterfaces\",\r\n \"resourceName\": \"nic50\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Storage/storageAccounts/crptestps2075sto\",\r\n \"resourceType\": \"Microsoft.Storage/storageAccounts\",\r\n \"resourceName\": \"crptestps2075sto\"\r\n }\r\n ],\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"resourceType\": \"Microsoft.Compute/virtualMachines\",\r\n \"resourceName\": \"myvm50\"\r\n }\r\n ],\r\n \"outputResources\": [\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm0\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm1\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm10\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm11\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm12\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm13\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm14\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm15\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm16\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm17\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm18\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm19\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm2\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm20\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm21\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm22\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm23\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm24\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm25\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm26\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm27\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm28\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm29\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm3\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm30\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm31\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm32\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm33\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm34\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm35\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm36\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm37\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm38\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm39\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm4\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm40\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm41\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm42\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm43\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm44\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm45\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm46\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm47\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm48\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm49\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm5\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm50\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm6\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm7\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm8\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Compute/virtualMachines/myvm9\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic0\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic1\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic10\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic11\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic12\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic13\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic14\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic15\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic16\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic17\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic18\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic19\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic2\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic20\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic21\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic22\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic23\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic24\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic25\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic26\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic27\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic28\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic29\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic3\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic30\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic31\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic32\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic33\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic34\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic35\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic36\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic37\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic38\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic39\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic4\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic40\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic41\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic42\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic43\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic44\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic45\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic46\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic47\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic48\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic49\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic5\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic50\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic6\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic7\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic8\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/networkInterfaces/nic9\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP0\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP1\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP10\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP11\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP12\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP13\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP14\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP15\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP16\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP17\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP18\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP19\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP2\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP20\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP21\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP22\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP23\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP24\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP25\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP26\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP27\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP28\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP29\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP3\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP30\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP31\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP32\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP33\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP34\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP35\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP36\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP37\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP38\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP39\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP4\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP40\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP41\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP42\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP43\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP44\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP45\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP46\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP47\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP48\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP49\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP5\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP50\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP6\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP7\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP8\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/publicIPAddresses/publicIP9\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Network/virtualNetworks/myVNET\"\r\n },\r\n {\r\n \"id\": \"Microsoft.Storage/storageAccounts/crptestps2075sto\"\r\n }\r\n ]\r\n }\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "78680"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14222"
+ ],
+ "x-ms-request-id": [
+ "b3e0b76c-d59a-4ddc-96cd-c1052bd5ca4f"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3e0b76c-d59a-4ddc-96cd-c1052bd5ca4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220239Z:b3e0b76c-d59a-4ddc-96cd-c1052bd5ca4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:02:39 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczIwNzUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"name\": \"myvm0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"name\": \"myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk10.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"name\": \"myvm10\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk11.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm11\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"name\": \"myvm11\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk12.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"name\": \"myvm12\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk13.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm13\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"name\": \"myvm13\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk14.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm14\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"name\": \"myvm14\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk15.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"name\": \"myvm15\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk16.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm16\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"name\": \"myvm16\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk17.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"name\": \"myvm17\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk18.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm18\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"name\": \"myvm18\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk19.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm19\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"name\": \"myvm19\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"name\": \"myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk20.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm20\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"name\": \"myvm20\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk21.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm21\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"name\": \"myvm21\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk22.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm22\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"name\": \"myvm22\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk23.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm23\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"name\": \"myvm23\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk24.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm24\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"name\": \"myvm24\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk25.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"name\": \"myvm25\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk26.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm26\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"name\": \"myvm26\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk27.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm27\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"name\": \"myvm27\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk28.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm28\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"name\": \"myvm28\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk29.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm29\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"name\": \"myvm29\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"name\": \"myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk30.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm30\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"name\": \"myvm30\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk31.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm31\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"name\": \"myvm31\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk32.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm32\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"name\": \"myvm32\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk33.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm33\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"name\": \"myvm33\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk34.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm34\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"name\": \"myvm34\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk35.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm35\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"name\": \"myvm35\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk36.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm36\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"name\": \"myvm36\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk37.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"name\": \"myvm37\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk38.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm38\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"name\": \"myvm38\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk39.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm39\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"name\": \"myvm39\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk4.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"name\": \"myvm4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk40.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm40\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"name\": \"myvm40\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk41.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm41\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"name\": \"myvm41\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk42.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm42\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"name\": \"myvm42\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk43.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm43\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"name\": \"myvm43\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk44.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm44\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"name\": \"myvm44\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk45.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm45\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"name\": \"myvm45\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm46\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"name\": \"myvm46\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk47.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm47\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"name\": \"myvm47\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm48\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"name\": \"myvm48\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk49.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm49\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"name\": \"myvm49\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"name\": \"myvm5\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk50.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm50\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"name\": \"myvm50\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm6\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"name\": \"myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm7\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"name\": \"myvm7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"name\": \"myvm8\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"name\": \"myvm9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "71882"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "b3b24849-7c32-4e32-9445-0f4b656b217e_130809264384775414"
+ ],
+ "x-ms-request-id": [
+ "c735e6a7-9656-43e6-8863-32edd76d7272"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14221"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ffb569b-8da2-494a-bfc6-6688d0e6164d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220242Z:9ffb569b-8da2-494a-bfc6-6688d0e6164d"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:02:41 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "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_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk0.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm0\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic0\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm0\",\r\n \"name\": \"myvm0\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk1.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm1\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic1\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm1\",\r\n \"name\": \"myvm1\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk10.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm10\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic10\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm10\",\r\n \"name\": \"myvm10\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk11.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm11\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic11\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm11\",\r\n \"name\": \"myvm11\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk12.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm12\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic12\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm12\",\r\n \"name\": \"myvm12\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk13.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm13\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic13\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm13\",\r\n \"name\": \"myvm13\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk14.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm14\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic14\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm14\",\r\n \"name\": \"myvm14\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk15.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm15\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic15\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm15\",\r\n \"name\": \"myvm15\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk16.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm16\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic16\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm16\",\r\n \"name\": \"myvm16\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk17.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm17\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic17\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm17\",\r\n \"name\": \"myvm17\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk18.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm18\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic18\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm18\",\r\n \"name\": \"myvm18\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk19.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm19\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic19\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm19\",\r\n \"name\": \"myvm19\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk2.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm2\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic2\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm2\",\r\n \"name\": \"myvm2\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk20.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm20\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic20\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm20\",\r\n \"name\": \"myvm20\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk21.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm21\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic21\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm21\",\r\n \"name\": \"myvm21\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk22.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm22\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic22\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm22\",\r\n \"name\": \"myvm22\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk23.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm23\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic23\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm23\",\r\n \"name\": \"myvm23\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk24.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm24\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic24\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm24\",\r\n \"name\": \"myvm24\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk25.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm25\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic25\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm25\",\r\n \"name\": \"myvm25\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk26.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm26\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic26\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm26\",\r\n \"name\": \"myvm26\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk27.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm27\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic27\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm27\",\r\n \"name\": \"myvm27\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk28.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm28\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic28\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm28\",\r\n \"name\": \"myvm28\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk29.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm29\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic29\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm29\",\r\n \"name\": \"myvm29\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk3.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm3\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic3\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm3\",\r\n \"name\": \"myvm3\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk30.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm30\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic30\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm30\",\r\n \"name\": \"myvm30\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk31.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm31\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic31\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm31\",\r\n \"name\": \"myvm31\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk32.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm32\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic32\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm32\",\r\n \"name\": \"myvm32\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk33.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm33\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic33\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm33\",\r\n \"name\": \"myvm33\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk34.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm34\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic34\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm34\",\r\n \"name\": \"myvm34\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk35.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm35\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic35\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm35\",\r\n \"name\": \"myvm35\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk36.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm36\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic36\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm36\",\r\n \"name\": \"myvm36\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk37.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm37\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic37\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm37\",\r\n \"name\": \"myvm37\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk38.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm38\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic38\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm38\",\r\n \"name\": \"myvm38\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk39.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm39\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic39\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm39\",\r\n \"name\": \"myvm39\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk4.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm4\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic4\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm4\",\r\n \"name\": \"myvm4\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk40.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm40\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic40\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm40\",\r\n \"name\": \"myvm40\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk41.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm41\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic41\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm41\",\r\n \"name\": \"myvm41\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk42.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm42\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic42\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm42\",\r\n \"name\": \"myvm42\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk43.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm43\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic43\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm43\",\r\n \"name\": \"myvm43\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk44.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm44\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic44\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm44\",\r\n \"name\": \"myvm44\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk45.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm45\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic45\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm45\",\r\n \"name\": \"myvm45\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk46.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm46\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic46\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm46\",\r\n \"name\": \"myvm46\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk47.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm47\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic47\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm47\",\r\n \"name\": \"myvm47\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk48.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm48\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic48\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm48\",\r\n \"name\": \"myvm48\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk49.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm49\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic49\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm49\",\r\n \"name\": \"myvm49\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk5.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm5\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic5\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm5\",\r\n \"name\": \"myvm5\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk50.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm50\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic50\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm50\",\r\n \"name\": \"myvm50\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk6.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm6\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic6\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm6\",\r\n \"name\": \"myvm6\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk7.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm7\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic7\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm7\",\r\n \"name\": \"myvm7\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk8.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm8\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic8\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm8\",\r\n \"name\": \"myvm8\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com:443/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15&$skiptoken=dca2cf7c-7bfc-4db9-a57c-7ff89ba0340d!/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/ResourceGroups/CRPTESTPS2075/VMs/MYVM9\"\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "70785"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "b3b24849-7c32-4e32-9445-0f4b656b217e_130809264384775414"
+ ],
+ "x-ms-request-id": [
+ "b9f6671b-a494-48f4-939f-6e6ea36b7029"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14640"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ba05863-243d-46e7-8eb8-f9db5c22398e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220745Z:8ba05863-243d-46e7-8eb8-f9db5c22398e"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:07:45 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/virtualMachines?api-version=2015-06-15&$skiptoken=dca2cf7c-7bfc-4db9-a57c-7ff89ba0340d!/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/ResourceGroups/CRPTESTPS2075/VMs/MYVM9",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNSYkc2tpcHRva2VuPWRjYTJjZjdjLTdiZmMtNGRiOS1hNTdjLTdmZjg5YmEwMzQwZCEvU3Vic2NyaXB0aW9ucy80ZDM2ODQ0NS1jYmIxLTQyYTctOTdhNi02ODUwYWI5OWY0OGUvUmVzb3VyY2VHcm91cHMvQ1JQVEVTVFBTMjA3NS9WTXMvTVlWTTk=",
+ "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_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \"sku\": \"14.04.2-LTS\",\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\": \"http://crptestps2075sto.blob.core.windows.net/vhds/osdisk9.vhd\"\r\n },\r\n \"caching\": \"ReadWrite\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"vm9\",\r\n \"adminUsername\": \"Foo12\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": false\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps2075/providers/Microsoft.Network/networkInterfaces/nic9\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/CRPTESTPS2075/providers/Microsoft.Compute/virtualMachines/myvm9\",\r\n \"name\": \"myvm9\",\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-served-by": [
+ "b3b24849-7c32-4e32-9445-0f4b656b217e_130809264384775414"
+ ],
+ "x-ms-request-id": [
+ "1bf331b8-9efc-4743-823d-2a042ed1aed8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14639"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd19ef66-bee1-489c-894c-c62e6984e3f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220801Z:bd19ef66-bee1-489c-894c-c62e6984e3f9"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:08:01 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps2075?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczIwNzU/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": [
+ "1199"
+ ],
+ "x-ms-request-id": [
+ "89695779-3543-4f4c-a431-f9806a3c1873"
+ ],
+ "x-ms-correlation-request-id": [
+ "89695779-3543-4f4c-a431-f9806a3c1873"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T220908Z:89695779-3543-4f4c-a431-f9806a3c1873"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:09:08 GMT"
+ ],
+ "Location": [
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDc1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
+ ]
+ },
+ "StatusCode": 202
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFMyMDc1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk15TURjMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/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": [
+ "14621"
+ ],
+ "x-ms-request-id": [
+ "f1fc2f43-646f-4aca-9af2-22b4efd19cab"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1fc2f43-646f-4aca-9af2-22b4efd19cab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150807T221756Z:f1fc2f43-646f-4aca-9af2-22b4efd19cab"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 07 Aug 2015 22:17:55 GMT"
+ ]
+ },
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ "Test-VirtualMachineListWithPaging": [
+ "crptestps2075"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "4d368445-cbb1-42a7-97a6-6850ab99f48e",
+ "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 c58bb4fba4d1..80f0173b58c1 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,8 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -13,7 +13,7 @@
"ResponseBody": "",
"ResponseHeaders": {
"Content-Length": [
- "104"
+ "105"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -28,16 +28,16 @@
"gateway"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "13924"
],
"x-ms-request-id": [
- "a74eded4-8d94-42f2-a630-d2ab9d0cbfa9"
+ "0e0771a1-2c34-4998-bf18-8ce5b818e9c0"
],
"x-ms-correlation-request-id": [
- "a74eded4-8d94-42f2-a630-d2ab9d0cbfa9"
+ "0e0771a1-2c34-4998-bf18-8ce5b818e9c0"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083218Z:a74eded4-8d94-42f2-a630-d2ab9d0cbfa9"
+ "WESTUS:20150805T212323Z:0e0771a1-2c34-4998-bf18-8ce5b818e9c0"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -46,14 +46,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:32:18 GMT"
+ "Wed, 05 Aug 2015 21:23:23 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "HEAD",
"RequestBody": "",
"RequestHeaders": {
@@ -73,16 +73,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14678"
],
"x-ms-request-id": [
- "cf337342-1b50-4290-afa9-33e7bac03caf"
+ "03ae42a3-8eec-4fad-9eb7-5662ed28dd8c"
],
"x-ms-correlation-request-id": [
- "cf337342-1b50-4290-afa9-33e7bac03caf"
+ "03ae42a3-8eec-4fad-9eb7-5662ed28dd8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083303Z:cf337342-1b50-4290-afa9-33e7bac03caf"
+ "WESTUS:20150805T212801Z:03ae42a3-8eec-4fad-9eb7-5662ed28dd8c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -91,14 +91,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:03 GMT"
+ "Wed, 05 Aug 2015 21:28:01 GMT"
]
},
"StatusCode": 204
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "PUT",
"RequestBody": "{\r\n \"location\": \"westus\"\r\n}",
"RequestHeaders": {
@@ -112,10 +112,10 @@
"Microsoft.Azure.Management.Resources.ResourceManagementClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361\",\r\n \"name\": \"pstestrg9361\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425\",\r\n \"name\": \"crptestps4425\",\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 +127,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1198"
],
"x-ms-request-id": [
- "c5a275c0-9af9-45d3-9d8f-c13d32bc8ecf"
+ "857b6034-aa0c-4219-ac7e-d0034bfaf1cf"
],
"x-ms-correlation-request-id": [
- "c5a275c0-9af9-45d3-9d8f-c13d32bc8ecf"
+ "857b6034-aa0c-4219-ac7e-d0034bfaf1cf"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083219Z:c5a275c0-9af9-45d3-9d8f-c13d32bc8ecf"
+ "WESTUS:20150805T212324Z:857b6034-aa0c-4219-ac7e-d0034bfaf1cf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -145,14 +145,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:32:18 GMT"
+ "Wed, 05 Aug 2015 21:23:23 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/resources?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9yZXNvdXJjZXM/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/resources?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcmVzb3VyY2VzP2FwaS12ZXJzaW9uPTIwMTQtMDQtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -175,16 +175,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "13923"
],
"x-ms-request-id": [
- "b4123896-0c10-4c66-a3ca-6608e37e894f"
+ "a056a164-8bd6-4662-bfdd-86f6615ec923"
],
"x-ms-correlation-request-id": [
- "b4123896-0c10-4c66-a3ca-6608e37e894f"
+ "a056a164-8bd6-4662-bfdd-86f6615ec923"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083219Z:b4123896-0c10-4c66-a3ca-6608e37e894f"
+ "WESTUS:20150805T212324Z:a056a164-8bd6-4662-bfdd-86f6615ec923"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -193,14 +193,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:32:18 GMT"
+ "Wed, 05 Aug 2015 21:23:23 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9361/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkF1dGhvcml6YXRpb24vcGVybWlzc2lvbnM/YXBpLXZlcnNpb249MjAxNC0wNy0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425/providers/Microsoft.Authorization/permissions?api-version=2014-07-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5BdXRob3JpemF0aW9uL3Blcm1pc3Npb25zP2FwaS12ZXJzaW9uPTIwMTQtMDctMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -226,32 +226,87 @@
"Accept-Encoding"
],
"x-ms-request-id": [
- "westus:e5ca4462-2a56-4af1-aaaf-43452096d524"
+ "westus:0e97a6fe-f625-41af-9eba-441c3f0ff6e9"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14999"
+ "14014"
],
"x-ms-correlation-request-id": [
- "ba9e7100-f437-4494-ad45-95bb04f7a383"
+ "bb5faba4-7a3b-47d1-9b51-a0154c9e4b8c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083220Z:ba9e7100-f437-4494-ad45-95bb04f7a383"
+ "WESTUS:20150805T212324Z:bb5faba4-7a3b-47d1-9b51-a0154c9e4b8c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:23 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/vmSizes?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "7296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-served-by": [
+ "b3b24849-7c32-4e32-9445-0f4b656b217e_130773150397702479"
+ ],
+ "x-ms-request-id": [
+ "40927b26-9c42-44a5-a207-edb88c2732b5"
+ ],
"Cache-Control": [
"no-cache"
],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14994"
+ ],
+ "x-ms-correlation-request-id": [
+ "80513a49-893f-4761-be08-762189d4f915"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212328Z:80513a49-893f-4761-be08-762189d4f915"
+ ],
"Date": [
- "Fri, 29 May 2015 08:32:20 GMT"
+ "Wed, 05 Aug 2015 21:23:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkzNjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -259,10 +314,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/vnetcrptestps4425' under resource group 'crptestps4425' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "168"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -277,13 +332,13 @@
"gateway"
],
"x-ms-request-id": [
- "0cad0e1a-ddaa-4f90-b8be-fbbd99440f94"
+ "d0870c1b-32fa-42a0-9a72-affe7e930016"
],
"x-ms-correlation-request-id": [
- "0cad0e1a-ddaa-4f90-b8be-fbbd99440f94"
+ "d0870c1b-32fa-42a0-9a72-affe7e930016"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083220Z:0cad0e1a-ddaa-4f90-b8be-fbbd99440f94"
+ "WESTUS:20150805T212328Z:d0870c1b-32fa-42a0-9a72-affe7e930016"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -292,14 +347,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:32:19 GMT"
+ "Wed, 05 Aug 2015 21:23:27 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkzNjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -307,10 +362,10 @@
"Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361\",\r\n \"etag\": \"W/\\\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\\\"\",\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\": \"subnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\",\r\n \"etag\": \"W/\\\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\\\"\",\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\": \"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}",
"ResponseHeaders": {
"Content-Length": [
- "960"
+ "1028"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -322,7 +377,7 @@
"no-cache"
],
"x-ms-request-id": [
- "f7ea3e8d-04f8-4434-8a2c-08cf31c8ffb1"
+ "93282a72-a8e2-4afb-ae79-61046431a6bf"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -331,30 +386,30 @@
"no-cache"
],
"ETag": [
- "W/\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\""
+ "W/\"cef5c366-2717-4c61-b46d-4e91c113262f\""
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14059"
],
"x-ms-correlation-request-id": [
- "039787f3-428e-4e6b-9b98-f272410ce26f"
+ "77eb36e2-2c9c-4169-9e26-66f212609d75"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083231Z:039787f3-428e-4e6b-9b98-f272410ce26f"
+ "WESTUS:20150805T212329Z:77eb36e2-2c9c-4169-9e26-66f212609d75"
],
"Date": [
- "Fri, 29 May 2015 08:32:31 GMT"
+ "Wed, 05 Aug 2015 21:23:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkzNjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -362,10 +417,10 @@
"Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"vnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361\",\r\n \"etag\": \"W/\\\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\\\"\",\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\": \"subnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\",\r\n \"etag\": \"W/\\\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\\\"\",\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\": \"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}",
"ResponseHeaders": {
"Content-Length": [
- "960"
+ "1028"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -377,7 +432,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1060aa59-8f81-4204-8c6c-b34505495ad3"
+ "2992948f-ab11-4bd9-932e-777af8cb0c47"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -386,47 +441,47 @@
"no-cache"
],
"ETag": [
- "W/\"b2be84f5-1fdf-44af-9dac-3e95bf4d923e\""
+ "W/\"cef5c366-2717-4c61-b46d-4e91c113262f\""
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14058"
],
"x-ms-correlation-request-id": [
- "4b0b2ce5-2b75-4682-853c-104b2c8e2ef2"
+ "27dcc699-d2eb-449b-a691-d036e56e37fb"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083231Z:4b0b2ce5-2b75-4682-853c-104b2c8e2ef2"
+ "WESTUS:20150805T212329Z:27dcc699-d2eb-449b-a691-d036e56e37fb"
],
"Date": [
- "Fri, 29 May 2015 08:32:31 GMT"
+ "Wed, 05 Aug 2015 21:23:28 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualnetworks/vnetpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvdmlydHVhbG5ldHdvcmtzL3ZuZXRwc3Rlc3RyZzkzNjE/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/virtualnetworks/vnetcrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxuZXR3b3Jrcy92bmV0Y3JwdGVzdHBzNDQyNT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"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\": \"subnetpstestrg9361\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetpstestrg9361\",\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\": \"subnetcrptestps4425\"\r\n }\r\n ]\r\n },\r\n \"name\": \"vnetcrptestps4425\",\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\": \"vnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361\",\r\n \"etag\": \"W/\\\"45400649-d0fb-4a93-b4ad-6a778400c6a9\\\"\",\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\": \"subnetpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\",\r\n \"etag\": \"W/\\\"45400649-d0fb-4a93-b4ad-6a778400c6a9\\\"\",\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\": \"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}",
"ResponseHeaders": {
"Content-Length": [
- "958"
+ "1026"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -441,10 +496,10 @@
"10"
],
"x-ms-request-id": [
- "ed940c97-5100-4308-8465-0e585375d7ac"
+ "1d4bfacf-56db-4c15-ad0d-b2a7e0e6073b"
],
"Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/ed940c97-5100-4308-8465-0e585375d7ac?api-version=2015-05-01-preview"
+ "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"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -457,23 +512,23 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "1190"
],
"x-ms-correlation-request-id": [
- "c7ba428f-73d3-450b-a541-ebadd9a11ff8"
+ "e6e320a3-5ee7-4443-9483-d0d1eac0b55a"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083221Z:c7ba428f-73d3-450b-a541-ebadd9a11ff8"
+ "WESTUS:20150805T212329Z:e6e320a3-5ee7-4443-9483-d0d1eac0b55a"
],
"Date": [
- "Fri, 29 May 2015 08:32:20 GMT"
+ "Wed, 05 Aug 2015 21:23:28 GMT"
]
},
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/ed940c97-5100-4308-8465-0e585375d7ac?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWQ5NDBjOTctNTEwMC00MzA4LTg0NjUtMGU1ODUzNzVkN2FjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -484,10 +539,165 @@
"Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "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": [
+ "34473c56-0479-4d14-a2d5-e2436ff718f7"
+ ],
+ "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": [
+ "14060"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb13605a-769b-4157-a072-850539825ec9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212329Z:eb13605a-769b-4157-a072-850539825ec9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:28 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",
+ "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/pubipcrptestps4425' under resource group 'crptestps4425' 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": [
+ "5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212329Z:5c14bc0b-d22d-40a6-afd1-4d5d7eb061b3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:28 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "616"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "12914f74-9d18-4aeb-96a5-f12f038dca3a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"799525fb-beb1-475f-9bed-ae3a23285a4f\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14055"
+ ],
+ "x-ms-correlation-request-id": [
+ "68c703ed-9756-4198-9950-3b5a720c9888"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212330Z:68c703ed-9756-4198-9950-3b5a720c9888"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:29 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "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}",
"ResponseHeaders": {
"Content-Length": [
- "30"
+ "616"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -499,7 +709,7 @@
"no-cache"
],
"x-ms-request-id": [
- "b7b7d35c-17ea-4069-baf6-a3d5f930d3f3"
+ "607465e0-90f0-4811-bf3c-0710776d8e3c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -507,28 +717,95 @@
"Cache-Control": [
"no-cache"
],
+ "ETag": [
+ "W/\"799525fb-beb1-475f-9bed-ae3a23285a4f\""
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14998"
+ "14054"
],
"x-ms-correlation-request-id": [
- "3e9c18f5-4ebc-457d-85c1-d20cc94092a9"
+ "573707c9-511a-4d8e-a208-c4ed7a07e570"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083221Z:3e9c18f5-4ebc-457d-85c1-d20cc94092a9"
+ "WESTUS:20150805T212330Z:573707c9-511a-4d8e-a208-c4ed7a07e570"
],
"Date": [
- "Fri, 29 May 2015 08:32:20 GMT"
+ "Wed, 05 Aug 2015 21:23:30 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/ed940c97-5100-4308-8465-0e585375d7ac?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvZWQ5NDBjOTctNTEwMC00MzA4LTg0NjUtMGU1ODUzNzVkN2FjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/publicIPAddresses/pubipcrptestps4425/?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3B1YmlwY3JwdGVzdHBzNDQyNS8/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}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "256"
+ ],
+ "User-Agent": [
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "615"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "10"
+ ],
+ "x-ms-request-id": [
+ "833af1ee-f53f-484e-9082-ca49022c179a"
+ ],
+ "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"
+ ],
+ "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": [
+ "1189"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2bd2831-ceb6-4b63-84bd-3ee4213c2438"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212330Z:c2bd2831-ceb6-4b63-84bd-3ee4213c2438"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:29 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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -554,7 +831,7 @@
"no-cache"
],
"x-ms-request-id": [
- "1c4a5b68-b15e-4819-a70e-b3374946ac42"
+ "fe1f11e1-2117-4d22-86c4-5861880d5086"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -567,23 +844,23 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14997"
+ "14056"
],
"x-ms-correlation-request-id": [
- "9ab0b6a8-cf53-4fa0-8ff4-9af6482239d0"
+ "4488715e-476c-49b7-8960-0f0a645bcbf0"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083231Z:9ab0b6a8-cf53-4fa0-8ff4-9af6482239d0"
+ "WESTUS:20150805T212330Z:4488715e-476c-49b7-8960-0f0a645bcbf0"
],
"Date": [
- "Fri, 29 May 2015 08:32:31 GMT"
+ "Wed, 05 Aug 2015 21:23:29 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkzNjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -591,10 +868,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/niccrptestps4425' under resource group 'crptestps4425' was not found.\"\r\n }\r\n}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "169"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -609,13 +886,13 @@
"gateway"
],
"x-ms-request-id": [
- "8b99d2eb-6fff-4893-a96b-d85cb2ac1e01"
+ "128fff96-dc89-4fad-8c67-dd37d9c3b3d7"
],
"x-ms-correlation-request-id": [
- "8b99d2eb-6fff-4893-a96b-d85cb2ac1e01"
+ "128fff96-dc89-4fad-8c67-dd37d9c3b3d7"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083231Z:8b99d2eb-6fff-4893-a96b-d85cb2ac1e01"
+ "WESTUS:20150805T212330Z:128fff96-dc89-4fad-8c67-dd37d9c3b3d7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -624,14 +901,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:32:31 GMT"
+ "Wed, 05 Aug 2015 21:23:30 GMT"
]
},
"StatusCode": 404
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkzNjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Network/networkInterfaces/niccrptestps4425?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pY2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -639,10 +916,65 @@
"Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"pubippstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\",\r\n \"etag\": \"W/\\\"bf232265-d565-4ee6-9b71-cc18a46ff083\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9361\",\r\n \"fqdn\": \"pubippstestrg9361.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}",
+ "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}",
"ResponseHeaders": {
"Content-Length": [
- "550"
+ "1405"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "63200e66-dab0-42fa-8236-3f8a8558e441"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "ETag": [
+ "W/\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14051"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bdbf67f-2ece-4641-bf31-387c9b88ef51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212331Z:6bdbf67f-2ece-4641-bf31-387c9b88ef51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:31 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1405"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -654,7 +986,7 @@
"no-cache"
],
"x-ms-request-id": [
- "4d06a82f-9d36-4833-9b29-b6536fd3144b"
+ "b5bd35f2-9c5e-4358-a803-230a81384c45"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -663,41 +995,107102 @@
"no-cache"
],
"ETag": [
- "W/\"bf232265-d565-4ee6-9b71-cc18a46ff083\""
+ "W/\"4843bc6b-dc13-4950-b94f-a2e3b8cb7339\""
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14050"
+ ],
+ "x-ms-correlation-request-id": [
+ "19c2e688-2015-495d-9078-81b3c329fc43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212331Z:19c2e688-2015-495d-9078-81b3c329fc43"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:31 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",
+ "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}",
+ "RequestHeaders": {
+ "Content-Type": [
+ "application/json"
+ ],
+ "Content-Length": [
+ "897"
+ ],
+ "User-Agent": [
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1405"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e027b26b-3ebe-4ef1-92f7-cb065f674503"
+ ],
+ "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"
+ ],
+ "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": [
+ "1188"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a8be8be-7dac-4ce1-8f20-75c094aff52f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212331Z:3a8be8be-7dac-4ce1-8f20-75c094aff52f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:30 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==",
+ "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": [
+ "b06573ea-a8a7-4c92-83f4-26c092aaef5b"
+ ],
+ "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": [
+ "14052"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ffd0b43-7e15-4fd2-85ad-70f1f667dfcd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212331Z:6ffd0b43-7e15-4fd2-85ad-70f1f667dfcd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:31 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==",
+ "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": [
+ "90f6fa1e-b66c-489e-a79a-ef6f581574e4"
+ ],
+ "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": [
+ "8de0752c-5403-43c8-9f6b-8def2cbb4a3d"
+ ],
+ "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"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1197"
+ ],
+ "x-ms-correlation-request-id": [
+ "8deef018-4d6f-452f-afd6-6184694669d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212333Z:8deef018-4d6f-452f-afd6-6184694669d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:33 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "619acb00-fde4-465a-a163-372141ea3db9"
+ ],
+ "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": [
+ "4ea27d32-6ec2-4746-b73f-0363e80db562"
+ ],
+ "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"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14057"
+ ],
+ "x-ms-correlation-request-id": [
+ "86943935-97d2-4fd4-8612-4fcdd82829a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212334Z:86943935-97d2-4fd4-8612-4fcdd82829a9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:34 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "b5d7555c-5516-4798-aadb-720795530a41"
+ ],
+ "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": [
+ "53aeb409-891c-4495-98ba-a3a15d8ee2ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14056"
+ ],
+ "x-ms-correlation-request-id": [
+ "49fa3e85-2065-483e-84f9-784c767eec9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212359Z:49fa3e85-2065-483e-84f9-784c767eec9d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:58 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "1efaa830-3b8b-4a52-9783-ffd1ee15c03f"
+ ],
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "38386d03-82a4-4d50-bb06-b8d0fc8510ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14055"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c808f3b-5f33-4c18-bc92-99793a35268d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212359Z:0c808f3b-5f33-4c18-bc92-99793a35268d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:58 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "03a2f2d6-a5bf-40c6-800d-974c85b18ce6"
+ ],
+ "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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "678"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "19b264ff-a7c3-4bcc-9871-8de971df6c6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14054"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b4475a3-271f-45bd-9500-537f12eeafaa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212359Z:4b4475a3-271f-45bd-9500-537f12eeafaa"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:23:58 GMT"
+ ]
+ },
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnM/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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "53697"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1dfa0907-9e19-4b5d-9ee9-5de0b3b2a2b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14013"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a9bf7d3-82f6-4e99-8661-a22ad471df8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:4a9bf7d3-82f6-4e99-8661-a22ad471df8b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:18 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "228"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0df088e3-06d7-42c4-ab95-94b073ac5f3f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14012"
+ ],
+ "x-ms-correlation-request-id": [
+ "a72b53dc-d23d-4689-84b9-a0b77476994d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:a72b53dc-d23d-4689-84b9-a0b77476994d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:18 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "07b65018-b921-4636-b7a7-83681dd95b6e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14011"
+ ],
+ "x-ms-correlation-request-id": [
+ "b796fc80-d007-462e-8774-e9dbcb01ceeb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:b796fc80-d007-462e-8774-e9dbcb01ceeb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:18 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1375a2a-0d9f-4634-8fb0-f1907daa4735"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14010"
+ ],
+ "x-ms-correlation-request-id": [
+ "54fe329a-e10e-45ae-877a-b3ef9703233e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:54fe329a-e10e-45ae-877a-b3ef9703233e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7cb5fce0-268f-4abf-95b3-c99fa85e164a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14009"
+ ],
+ "x-ms-correlation-request-id": [
+ "0da31270-dfe2-4b86-9adb-7ca23340c684"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:0da31270-dfe2-4b86-9adb-7ca23340c684"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e8781b79-6c62-485e-af6d-1770ed965a87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14008"
+ ],
+ "x-ms-correlation-request-id": [
+ "833e0ce1-f299-4e60-9605-7b118078f3bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212419Z:833e0ce1-f299-4e60-9605-7b118078f3bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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=",
+ "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\": \"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]",
+ "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": [
+ "dfed8f7a-15e7-4ebe-92b6-a3f54e57eabf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14007"
+ ],
+ "x-ms-correlation-request-id": [
+ "016f2999-f36d-4b27-b094-9b8662e00956"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:016f2999-f36d-4b27-b094-9b8662e00956"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d25ac97-80fc-48dd-8126-fa9f509c1875"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14006"
+ ],
+ "x-ms-correlation-request-id": [
+ "20e2d5ec-18ea-483f-b274-a029d025ee7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:20e2d5ec-18ea-483f-b274-a029d025ee7b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bf8ff1f1-96b4-4565-a42a-27f3eaff3934"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14005"
+ ],
+ "x-ms-correlation-request-id": [
+ "e17ea15b-74f5-4ecc-9b6d-c89acbf8b45d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:e17ea15b-74f5-4ecc-9b6d-c89acbf8b45d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4807d729-a4bd-4527-a747-b6195bb44634"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14004"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a60dd0a-959f-4111-a8ad-5fcc61579255"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:9a60dd0a-959f-4111-a8ad-5fcc61579255"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7a1482b2-c781-4276-bc43-6379188944e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14003"
+ ],
+ "x-ms-correlation-request-id": [
+ "958f5357-bb4c-4688-9c7b-b07d437757ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:958f5357-bb4c-4688-9c7b-b07d437757ae"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a2f0b311-d940-490e-a935-32ccbb547df1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14002"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6d0d4d7-00f5-4d14-b176-38993eb34a3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:b6d0d4d7-00f5-4d14-b176-38993eb34a3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "556"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1ddf527-fad9-4aca-a014-0e0c2e0fdc7e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14001"
+ ],
+ "x-ms-correlation-request-id": [
+ "46453ca0-5c75-4771-871a-6ce628972a6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212420Z:46453ca0-5c75-4771-871a-6ce628972a6e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "da3693d0-c005-4db7-8abd-2b1435028ad0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "14000"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ceb86ca-6e9e-49b7-9cf6-70d99199a668"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:2ceb86ca-6e9e-49b7-9cf6-70d99199a668"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1625"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "26aa4789-a24b-4c50-8fac-54b12c93ec83"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13999"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4b5f00a-1914-43da-82b5-241fa747ad5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:d4b5f00a-1914-43da-82b5-241fa747ad5f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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",
+ "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.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]",
+ "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": [
+ "f0c6ad65-b406-467d-aed9-d38a9567cba9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13998"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcdc0f65-5fc7-4dd3-965b-5548ebcdf466"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:fcdc0f65-5fc7-4dd3-965b-5548ebcdf466"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ccc66e2f-a457-40af-bd3c-7281b4e30f8d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13997"
+ ],
+ "x-ms-correlation-request-id": [
+ "743e2c7e-0f74-424a-95e1-c79c3c8a1d00"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:743e2c7e-0f74-424a-95e1-c79c3c8a1d00"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b64296e-4cca-4c06-8470-ed5e25a44f6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13996"
+ ],
+ "x-ms-correlation-request-id": [
+ "765cf4d1-59d7-489e-bd71-de0357c8f39e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:765cf4d1-59d7-489e-bd71-de0357c8f39e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:20 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6b3cbd5-42ab-463e-a56c-14183216418c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13995"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f9a297a-d4bb-4c5a-8871-bb85591b1304"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:6f9a297a-d4bb-4c5a-8871-bb85591b1304"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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.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]",
+ "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": [
+ "973b6be0-73e7-4f68-af91-320f3669be10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13994"
+ ],
+ "x-ms-correlation-request-id": [
+ "b12879c4-da71-4f6b-84c1-91c53832968e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212421Z:b12879c4-da71-4f6b-84c1-91c53832968e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5e0934eb-f5a4-40dd-a533-5ee26edd3ece"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13993"
+ ],
+ "x-ms-correlation-request-id": [
+ "73cc11f6-d0b2-4e66-a0c0-592dc62873ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:73cc11f6-d0b2-4e66-a0c0-592dc62873ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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.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]",
+ "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": [
+ "7b305e46-99e5-4f66-8abb-9c8a64547a6a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13992"
+ ],
+ "x-ms-correlation-request-id": [
+ "42445bb8-9ffe-4d0c-8ffd-47613e298cda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:42445bb8-9ffe-4d0c-8ffd-47613e298cda"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6412532f-f307-4fa2-808b-b5057d99aa84"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13991"
+ ],
+ "x-ms-correlation-request-id": [
+ "207e2ca2-9d45-442b-a068-0828d21e0dc9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:207e2ca2-9d45-442b-a068-0828d21e0dc9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8f82a0d-7ea8-4361-8cee-4f6e5c2f2537"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13990"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7d688a6-6bed-4db8-861a-1afbc4e47cd6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:b7d688a6-6bed-4db8-861a-1afbc4e47cd6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "77462186-9834-4bfe-bf9e-97f05b4f720b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13989"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cc949ea-5d54-47a2-bd73-79a68fbe16c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:9cc949ea-5d54-47a2-bd73-79a68fbe16c8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "249a3fed-5bd7-4008-a3ff-addf017fde07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13988"
+ ],
+ "x-ms-correlation-request-id": [
+ "fece664d-cc56-4300-a218-61a5cbf10db8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:fece664d-cc56-4300-a218-61a5cbf10db8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59b9f7df-8130-486f-95fb-1d1135c96d7a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13987"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee043959-c26b-4dd5-83d4-c270a03c1cdb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:ee043959-c26b-4dd5-83d4-c270a03c1cdb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:21 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdddaa61-6d8b-4954-a7f7-64e4eeaf84bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13986"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaa1a125-c82d-4ee7-9ccf-f49ac02d925b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212422Z:eaa1a125-c82d-4ee7-9ccf-f49ac02d925b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c10d875c-6449-4a2b-8c99-737d9e3f45fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13985"
+ ],
+ "x-ms-correlation-request-id": [
+ "8dcfdaf8-3793-4590-8245-10b2fa5e11bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:8dcfdaf8-3793-4590-8245-10b2fa5e11bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "285"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f4db079-0a94-497a-a6b2-528b6eb76fc6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13984"
+ ],
+ "x-ms-correlation-request-id": [
+ "9978db03-0e2a-4b3b-8fb1-60608a43a08c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:9978db03-0e2a-4b3b-8fb1-60608a43a08c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "520"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff4f2e8c-2246-46a0-a440-91a19a6e3335"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13983"
+ ],
+ "x-ms-correlation-request-id": [
+ "face2c8c-e8cb-4465-ae75-d9b80b2b6f8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:face2c8c-e8cb-4465-ae75-d9b80b2b6f8b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "293"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4dc45885-280a-45b1-86c0-c455bbe463fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13982"
+ ],
+ "x-ms-correlation-request-id": [
+ "87ea2ff9-f44f-4f40-9634-c3d898120324"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:87ea2ff9-f44f-4f40-9634-c3d898120324"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3dbaf85c-d1c4-421d-8238-66dfa0074261"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13981"
+ ],
+ "x-ms-correlation-request-id": [
+ "cad2d5c2-d4dd-4c19-9518-d0d97080b684"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:cad2d5c2-d4dd-4c19-9518-d0d97080b684"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ca9297a-37d7-4ddc-af6b-0e1afd401bc5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13980"
+ ],
+ "x-ms-correlation-request-id": [
+ "344d7b9b-5e55-4482-834a-d6866e179e32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:344d7b9b-5e55-4482-834a-d6866e179e32"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:22 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "564"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "961cc157-28e5-4505-aefb-91222aa748d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13979"
+ ],
+ "x-ms-correlation-request-id": [
+ "a06c89de-aa25-431f-8324-ce5ca330f21d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212423Z:a06c89de-aa25-431f-8324-ce5ca330f21d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d06c3b33-7067-4a00-b9c0-0c620b0048ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13978"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8412127-6f66-4286-8303-d240ce164b2e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:d8412127-6f66-4286-8303-d240ce164b2e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "290a2959-54ab-4ef8-8975-6de1c02b13bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13977"
+ ],
+ "x-ms-correlation-request-id": [
+ "2be09ef4-2767-4a4d-ae65-26f32b07b92b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:2be09ef4-2767-4a4d-ae65-26f32b07b92b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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==",
+ "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/activeeon/ArtifactTypes/VMImage/Offers/activeeon-workload-scheduler/Skus/free/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6d9fdb2-1ff8-4c24-b9f7-ab7257054fe5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13976"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8ece904-c286-4e7e-82f2-a3fa77b30900"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:c8ece904-c286-4e7e-82f2-a3fa77b30900"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7150c662-0fe6-498c-a8a8-05a587be07b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13975"
+ ],
+ "x-ms-correlation-request-id": [
+ "6554fae7-2848-4126-a93e-9c8c906a53bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:6554fae7-2848-4126-a93e-9c8c906a53bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c29c1ad4-b201-4a41-b607-8103d5354330"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13974"
+ ],
+ "x-ms-correlation-request-id": [
+ "10c10a20-d7da-41a3-b5d0-a99ecfc639fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:10c10a20-d7da-41a3-b5d0-a99ecfc639fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2163c2e2-fa00-4867-ac18-0e068ea34816"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13973"
+ ],
+ "x-ms-correlation-request-id": [
+ "da5b20f4-ddcf-4f50-8f7a-bc8b78e8da0a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:da5b20f4-ddcf-4f50-8f7a-bc8b78e8da0a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:23 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==",
+ "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/adam-software/ArtifactTypes/VMImage/Offers/adam/Skus/adamsoftware/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f61870e-921b-444f-97cd-ca21a08c185e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13972"
+ ],
+ "x-ms-correlation-request-id": [
+ "6554cd7a-fb64-4478-a810-146777110e9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212424Z:6554cd7a-fb64-4478-a810-146777110e9a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "518c3892-d069-4acf-9c7a-f167b0972e6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13971"
+ ],
+ "x-ms-correlation-request-id": [
+ "961d60ae-4c8c-412d-bda9-29ceea11d4f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:961d60ae-4c8c-412d-bda9-29ceea11d4f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "cad2bc52-db20-4263-a12a-de1e87b696a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13970"
+ ],
+ "x-ms-correlation-request-id": [
+ "b613fd39-d736-4cfb-bdad-8d6767b6693d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:b613fd39-d736-4cfb-bdad-8d6767b6693d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b2ac56d-aaa5-400c-b85f-978c0f057ab8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13969"
+ ],
+ "x-ms-correlation-request-id": [
+ "829143b1-cf10-46f1-876c-32b8165f849e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:829143b1-cf10-46f1-876c-32b8165f849e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "be9165f4-0de6-4833-b43f-0f0de66cad6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13968"
+ ],
+ "x-ms-correlation-request-id": [
+ "81d0552b-faf1-4c26-984f-24ccdc41a8d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:81d0552b-faf1-4c26-984f-24ccdc41a8d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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",
+ "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/adobe/ArtifactTypes/VMImage/Offers/adobe_aem/Skus/adobeaem/Versions/1.0.0\"\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": [
+ "a9b22f2e-7ddc-4c48-887f-2026307c6909"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13967"
+ ],
+ "x-ms-correlation-request-id": [
+ "c71a9d1d-18c0-42db-b0df-a2df5e4423b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:c71a9d1d-18c0-42db-b0df-a2df5e4423b9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "468"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "726b7c7a-26da-4e64-9b5e-6be0f101e74d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13966"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cdf0b4d-39b1-4779-9d61-3aea6e429064"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:4cdf0b4d-39b1-4779-9d61-3aea6e429064"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bff42519-7925-4c19-86fa-bf7a81b89396"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13965"
+ ],
+ "x-ms-correlation-request-id": [
+ "45094b8d-a3e6-42ea-a7bf-798061649012"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:45094b8d-a3e6-42ea-a7bf-798061649012"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:24 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=",
+ "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/adobe/ArtifactTypes/VMImage/Offers/adobe_campaign_test/Skus/adobe_camp_test/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ca1c0401-4a7e-4396-bbf4-0250c31c4024"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13964"
+ ],
+ "x-ms-correlation-request-id": [
+ "515bd525-2d79-43f0-9e60-91a81dbd6103"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212425Z:515bd525-2d79-43f0-9e60-91a81dbd6103"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f9372b3-89ce-4ffb-a043-54d237ffc19c"
+ ],
+ "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": [
+ "eb141a16-7b99-4977-ba1c-441cb3b964e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:eb141a16-7b99-4977-ba1c-441cb3b964e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a693f65-bd11-462e-98a5-4883d23a4816"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13962"
+ ],
+ "x-ms-correlation-request-id": [
+ "721504bb-a804-4c40-9643-6498f8b0c26c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:721504bb-a804-4c40-9643-6498f8b0c26c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f49343f0-cccc-448d-8f25-026851e970f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13961"
+ ],
+ "x-ms-correlation-request-id": [
+ "d870b53b-f746-4931-a3bf-05edc9043062"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:d870b53b-f746-4931-a3bf-05edc9043062"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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=",
+ "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/advantech/ArtifactTypes/VMImage/Offers/susiaccess30/Skus/std/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30652fc8-a3ba-45ec-9532-37beae2106b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13960"
+ ],
+ "x-ms-correlation-request-id": [
+ "263999d9-6b8d-4d9f-a044-4c054d813206"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:263999d9-6b8d-4d9f-a044-4c054d813206"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "472"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e7a223f-2b0c-46c7-af7a-1118ae150fac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13959"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0dc5ba4-5d72-4cd1-a416-517900020e27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:c0dc5ba4-5d72-4cd1-a416-517900020e27"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5ea2a14-7b6b-40d8-8074-7b1c6b193d4d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13958"
+ ],
+ "x-ms-correlation-request-id": [
+ "010feffa-abf3-4ded-a8c1-606d89282cb7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:010feffa-abf3-4ded-a8c1-606d89282cb7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:25 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04ad5c2e-7ffc-4eaf-bacc-1431d4831f5d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13957"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7c5c47b-c056-44d9-9f08-fc0b9614c652"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212426Z:f7c5c47b-c056-44d9-9f08-fc0b9614c652"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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=",
+ "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/advantech-webaccess/ArtifactTypes/VMImage/Offers/webaccess-8_0_1/Skus/1500tags/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92c020af-2e6f-4ff1-b72b-24a206a3b6e0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13956"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad68e4ed-6b48-464d-98f1-01c054fc0d7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:ad68e4ed-6b48-464d-98f1-01c054fc0d7c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1b019e97-bb47-4efd-91ca-30ca28292ded"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13955"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef05efc6-898b-475d-977f-b2e15098c644"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:ef05efc6-898b-475d-977f-b2e15098c644"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e82fc3e-a885-488f-ad5e-96a13cd2a4b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13954"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a873e48-05f2-484a-b4a1-87716859b014"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:7a873e48-05f2-484a-b4a1-87716859b014"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30f6d44a-61b0-4f89-865f-19f6b63ff888"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13953"
+ ],
+ "x-ms-correlation-request-id": [
+ "a03c8407-4e0d-4339-86d6-78e351736401"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:a03c8407-4e0d-4339-86d6-78e351736401"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8ced06d9-e872-4259-8702-dfd77dc7f1b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13952"
+ ],
+ "x-ms-correlation-request-id": [
+ "b16dcb1c-8378-4ca0-bd36-7ad8b42b9243"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:b16dcb1c-8378-4ca0-bd36-7ad8b42b9243"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ae5e8ab-3d81-4fcc-b83a-7b05e9041fc8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13951"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e33fe35-02c2-4e79-aaec-be3650ee40aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:1e33fe35-02c2-4e79-aaec-be3650ee40aa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:26 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==",
+ "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/aerospike/ArtifactTypes/VMImage/Offers/aerospike-database-vm/Skus/aerospikedb001/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c6a1aa28-0bc0-460c-9ca2-ce91ca83b35e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13950"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c98d07e-aeb6-4709-974b-cc295e4e7b68"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212427Z:5c98d07e-aeb6-4709-974b-cc295e4e7b68"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "510"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8180a1b4-02e0-4574-afd6-9967de9a8c63"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13949"
+ ],
+ "x-ms-correlation-request-id": [
+ "36499216-2e11-47af-8b4a-1e43d2b23b7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:36499216-2e11-47af-8b4a-1e43d2b23b7b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "924"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c52f5a89-ebb0-434a-a553-df2ec8a456fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13948"
+ ],
+ "x-ms-correlation-request-id": [
+ "efa8c74d-b195-405e-ae8a-77a88c2979a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:efa8c74d-b195-405e-ae8a-77a88c2979a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "714a577f-5306-405e-af6d-385b207a7c2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13947"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f3a1310-fb4f-433f-a281-b35cc552c89b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:2f3a1310-fb4f-433f-a281-b35cc552c89b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8374c77d-d861-4ca0-bc7d-c0f5ae31d9c1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13946"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bca5376-8c4d-4f43-92b2-3bf37ec8efed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:0bca5376-8c4d-4f43-92b2-3bf37ec8efed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bf69848d-ccaf-4ab5-ab65-d7ff3a76bc89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13945"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3427d28-cd09-47ce-998b-30cb72f9a1f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:b3427d28-cd09-47ce-998b-30cb72f9a1f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "293"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "671b6001-2359-4983-96b6-250f1d71c8aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13944"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4efb9b4-ae29-44d0-825d-20fd0a206e21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:c4efb9b4-ae29-44d0-825d-20fd0a206e21"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:27 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec253b3f-59c6-480e-a812-5756cf59e839"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13943"
+ ],
+ "x-ms-correlation-request-id": [
+ "6eb2721e-0b82-46e1-be19-136446062014"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212428Z:6eb2721e-0b82-46e1-be19-136446062014"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "568"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fa97eca5-d928-416f-ab9d-ef24914a8148"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13942"
+ ],
+ "x-ms-correlation-request-id": [
+ "932f1f02-c60e-4e63-96c7-e29c451b8e1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:932f1f02-c60e-4e63-96c7-e29c451b8e1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "350402d4-e159-4180-806f-1eb8fe258468"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13941"
+ ],
+ "x-ms-correlation-request-id": [
+ "015958a4-1abd-4489-bb9e-990a0b2e1ac7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:015958a4-1abd-4489-bb9e-990a0b2e1ac7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3821785-c9a3-48f3-8a61-63fbafa70a92"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13940"
+ ],
+ "x-ms-correlation-request-id": [
+ "82dabbd0-7c27-4718-98cd-2b46a9a78ff2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:82dabbd0-7c27-4718-98cd-2b46a9a78ff2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "586"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "045ff2fe-c787-40c5-a8df-8a2a4d88daa9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13939"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd24e732-1e37-461d-9343-3864da3ff311"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:dd24e732-1e37-461d-9343-3864da3ff311"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "503b62db-950e-49be-86e5-e881015582cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13938"
+ ],
+ "x-ms-correlation-request-id": [
+ "b662ff3a-c256-43f0-b1b1-2fcda062c231"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:b662ff3a-c256-43f0-b1b1-2fcda062c231"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d0b5597b-3f2e-49f5-aef0-37b3d35bb627"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13937"
+ ],
+ "x-ms-correlation-request-id": [
+ "823dcb73-fedd-4b7d-b448-e49d3a0afd52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:823dcb73-fedd-4b7d-b448-e49d3a0afd52"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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==",
+ "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/alachisoft/ArtifactTypes/VMImage/Offers/ncache-opensource/Skus/ncache-opensource/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "284e53ac-cf63-471c-bfd6-7552a944b1cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13936"
+ ],
+ "x-ms-correlation-request-id": [
+ "314a0297-e221-4f3e-b4fd-9b39f92306de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212429Z:314a0297-e221-4f3e-b4fd-9b39f92306de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:28 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7456930-d89e-47a4-b11c-83d344567394"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13935"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b16c860-42dd-467f-866e-1a0684231447"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:6b16c860-42dd-467f-866e-1a0684231447"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "495"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5628a0a6-8cab-4414-8e92-5a10cdca5881"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13934"
+ ],
+ "x-ms-correlation-request-id": [
+ "443f1273-9a13-4347-b541-2daec6400f8e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:443f1273-9a13-4347-b541-2daec6400f8e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de9ad8d7-3668-4daf-b8b5-a6c0ee6fe38b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13933"
+ ],
+ "x-ms-correlation-request-id": [
+ "02664998-472d-4603-a0ca-5dfc00c25183"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:02664998-472d-4603-a0ca-5dfc00c25183"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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",
+ "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.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]",
+ "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": [
+ "ce026762-c544-4f0b-bc1f-1711708bada4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13932"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3fd4e57-81eb-48c8-8559-f4bffd86b813"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:f3fd4e57-81eb-48c8-8559-f4bffd86b813"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "419ea26e-1b53-49b7-a5b8-a616013b3f94"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13931"
+ ],
+ "x-ms-correlation-request-id": [
+ "93fc99ee-0ad2-4999-a714-8be7b1ddebe2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:93fc99ee-0ad2-4999-a714-8be7b1ddebe2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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=",
+ "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\": \"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]",
+ "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": [
+ "9c85a91b-cdb6-4841-b021-7add1d92bd14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13930"
+ ],
+ "x-ms-correlation-request-id": [
+ "8186c9f4-32d6-427c-8a76-bf38f5c4aa96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:8186c9f4-32d6-427c-8a76-bf38f5c4aa96"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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==",
+ "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/alertlogic/ArtifactTypes/VMImage/Offers/alert-logic-wsm/Skus/20216000100-wsmpbyl/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "037abf66-a051-46db-8d2a-4634e4a0eeb9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13929"
+ ],
+ "x-ms-correlation-request-id": [
+ "40501538-4d9f-44f0-bfba-731ed616c52e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212430Z:40501538-4d9f-44f0-bfba-731ed616c52e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:29 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "510"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "43ed6b7d-ab9e-4eeb-82c7-8a1a0e51fb0b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13928"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b51b48f-a33f-478b-8c7f-3c6b52d965f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:8b51b48f-a33f-478b-8c7f-3c6b52d965f8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "cf4a2b30-78b4-40db-884a-14939da2b3f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13927"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe883707-2dac-467a-8097-91298eae45ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:fe883707-2dac-467a-8097-91298eae45ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "543"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "627b61a4-c678-4f3a-ba91-5449215a6b9c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13926"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbd4defb-2ef2-489e-a393-2f926c25b9c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:cbd4defb-2ef2-489e-a393-2f926c25b9c2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "293"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "49c6e1f9-b97b-4a64-99d3-f86f0dd123e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13925"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ae85ddf-bfef-40d8-a2b5-52b2556e78fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:4ae85ddf-bfef-40d8-a2b5-52b2556e78fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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",
+ "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/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics/Skus/algebraixanalytics_std/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": [
+ "8bb49e24-0bb3-4509-ac26-b9d138c6101f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13924"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ae29225-0174-440e-b928-1b412151ef49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:2ae29225-0174-440e-b928-1b412151ef49"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "687"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1931f063-321e-4fd3-b363-276bf3992bdd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13923"
+ ],
+ "x-ms-correlation-request-id": [
+ "6da113da-6130-4b0c-ae11-a2894994d2c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:6da113da-6130-4b0c-ae11-a2894994d2c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "03526960-40f4-4f6e-ab07-ecbdfbda6af3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13922"
+ ],
+ "x-ms-correlation-request-id": [
+ "958c85d3-63fd-4b18-b614-be113fe49311"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212431Z:958c85d3-63fd-4b18-b614-be113fe49311"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:30 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=",
+ "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/algebraix-data/ArtifactTypes/VMImage/Offers/algebraix-analytics-enterprise/Skus/algebraixanalytics_ent/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ffc819d0-6cdb-43ce-a90a-60a50ec8ec06"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13921"
+ ],
+ "x-ms-correlation-request-id": [
+ "6eebbf39-2fa0-43c0-93f3-09f319caacc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:6eebbf39-2fa0-43c0-93f3-09f319caacc0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "709"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7b6ca1b2-ad3a-4612-925b-4dc4a3e7ea06"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13920"
+ ],
+ "x-ms-correlation-request-id": [
+ "11145ca0-59d8-4bf1-86b6-20cf73742991"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:11145ca0-59d8-4bf1-86b6-20cf73742991"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "593"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0500401a-0e4a-42a5-a9f2-cd7b318274f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13919"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec7757ec-459a-4c01-b57e-652137b8ac2e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:ec7757ec-459a-4c01-b57e-652137b8ac2e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "369"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d7fb381c-fa7a-4555-bea8-da178f475a9b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13918"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e520e7a-b908-4283-b980-a3014f04363e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:6e520e7a-b908-4283-b980-a3014f04363e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a74c5399-23e9-41e0-87e9-6b33dcd5bd81"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13917"
+ ],
+ "x-ms-correlation-request-id": [
+ "468c453b-fd79-4ef6-a482-8c795c53242b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:468c453b-fd79-4ef6-a482-8c795c53242b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "636"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9235a2cd-46db-4371-8f88-9748aa1982a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13916"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f01447c-a78b-466e-b201-07cca7d79465"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:5f01447c-a78b-466e-b201-07cca7d79465"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "293"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cbc34260-8636-475d-a323-01c9917f042c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13915"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f459743-3a89-4e75-acb3-dc20e57a519a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:1f459743-3a89-4e75-acb3-dc20e57a519a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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",
+ "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/alldigital-brevity/ArtifactTypes/VMImage/Offers/alldigital-brevity-uploader/Skus/brevity-uploader/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": [
+ "c9f69b9c-ea88-4469-815b-ef4384f17033"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13914"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c18a220-d869-4ea5-99ec-7a771807a46b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:4c18a220-d869-4ea5-99ec-7a771807a46b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d9eb6ad-ee43-42a5-9fa1-5bf9320dd049"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13913"
+ ],
+ "x-ms-correlation-request-id": [
+ "cef20614-c9b1-474b-864d-a6dcc9f16b1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212432Z:cef20614-c9b1-474b-864d-a6dcc9f16b1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "222"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9961a6fb-34db-4b1a-a68b-a4fd3bd4e56d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13912"
+ ],
+ "x-ms-correlation-request-id": [
+ "5aa7ff94-3b3e-411f-a866-b43014fb3d2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:5aa7ff94-3b3e-411f-a866-b43014fb3d2d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "83672b17-5152-4084-894a-e70f97f0dd09"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13911"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c871648-de93-4767-a2b0-5b0bd44561ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:5c871648-de93-4767-a2b0-5b0bd44561ab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "74e97754-cf47-4f62-9136-d95d8c382724"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13910"
+ ],
+ "x-ms-correlation-request-id": [
+ "2305e8b4-350c-4042-9ddc-3e2429def1a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:2305e8b4-350c-4042-9ddc-3e2429def1a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8fd2946-5a68-4741-9af2-1cbc4ca421a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13909"
+ ],
+ "x-ms-correlation-request-id": [
+ "851627ff-d0ff-4a19-aeba-7c98ef4e584c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:851627ff-d0ff-4a19-aeba-7c98ef4e584c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "123cf2df-08ed-4933-90b2-19fc48713979"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13908"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2b7155d-0b89-4ba8-b387-844b242662da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:a2b7155d-0b89-4ba8-b387-844b242662da"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2773641a-5f3c-4f0d-8aa2-95cf6f7b0544"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13907"
+ ],
+ "x-ms-correlation-request-id": [
+ "b148860f-18e0-4e3c-99c2-0ba9f69515c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:b148860f-18e0-4e3c-99c2-0ba9f69515c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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",
+ "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\": \"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]",
+ "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": [
+ "1f4d3972-e593-4380-b234-a80a92a5e143"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13906"
+ ],
+ "x-ms-correlation-request-id": [
+ "e379c185-3b44-45d7-8214-9a2fc869628c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:e379c185-3b44-45d7-8214-9a2fc869628c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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=",
+ "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/appex-networks/ArtifactTypes/VMImage/Offers/cloudexpress/Skus/standard-byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "272c8d7d-0ab1-4e69-a619-d4a6a8573b4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13905"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f2ba42a-61f5-4691-b5d1-0738a751ed21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:9f2ba42a-61f5-4691-b5d1-0738a751ed21"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92427d8b-2bdf-4201-9137-08f669a14432"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13904"
+ ],
+ "x-ms-correlation-request-id": [
+ "17b6bd10-6718-453c-8bb1-0d122bc4832f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212433Z:17b6bd10-6718-453c-8bb1-0d122bc4832f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:32 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff0573a4-6179-45fd-8711-226d48c7752c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13903"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2ba9758-9e1f-44cf-bfff-b64d0d88fa5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:f2ba9758-9e1f-44cf-bfff-b64d0d88fa5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "032100e6-bffc-4f45-8f9a-7eb125c84261"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13902"
+ ],
+ "x-ms-correlation-request-id": [
+ "9415c55d-c0ea-4457-b240-ac271c1a81ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:9415c55d-c0ea-4457-b240-ac271c1a81ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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==",
+ "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/appistry/ArtifactTypes/VMImage/Offers/genomepilot/Skus/onebox-genome-pilot/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d47f09a1-bb56-4a8c-892a-1de721a6dd5f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13901"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d255746-e8e9-4084-ada2-23d65badeae2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:5d255746-e8e9-4084-ada2-23d65badeae2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2acaeda1-bc6c-444a-957b-7426d540235b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13900"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e6981be-8ac2-43c8-bc3d-2284ae10d28a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:6e6981be-8ac2-43c8-bc3d-2284ae10d28a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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",
+ "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\": \"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]",
+ "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": [
+ "7de03894-5dae-4d35-b049-980528567d47"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13899"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b403be5-ad75-4e64-ade1-751e6723ad7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:7b403be5-ad75-4e64-ade1-751e6723ad7c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "321"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6a909e0d-2bbc-4a3d-b9a4-905985356764"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13898"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad3d0041-1b31-491f-9fbb-b1f209d3d195"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:ad3d0041-1b31-491f-9fbb-b1f209d3d195"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "091817bf-b3cd-42e6-b8cf-582c586b2767"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13897"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f0ca6ee-8590-4438-82bc-eabd2e63cc6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:4f0ca6ee-8590-4438-82bc-eabd2e63cc6e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "584"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e38013f8-435d-4495-8960-c656ba60360d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13896"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e39f42d-f002-4d35-aecd-a8a4d51406cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:5e39f42d-f002-4d35-aecd-a8a4d51406cd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c215003-927a-4620-a7f4-4cb76b3c1f38"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13895"
+ ],
+ "x-ms-correlation-request-id": [
+ "0600bc1a-2fad-4b52-aa42-ec986cab3aed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212434Z:0600bc1a-2fad-4b52-aa42-ec986cab3aed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:33 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==",
+ "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\": \"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]",
+ "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": [
+ "8d689440-e5a3-4980-a503-93ca0a46b0e1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13894"
+ ],
+ "x-ms-correlation-request-id": [
+ "29737519-8481-4eb3-b646-fe5d544c55e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:29737519-8481-4eb3-b646-fe5d544c55e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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",
+ "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.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]",
+ "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": [
+ "2585c3cf-8369-43d6-b55d-4b7b1de73daa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13893"
+ ],
+ "x-ms-correlation-request-id": [
+ "60f317af-1042-4942-a903-8b3fec88cf64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:60f317af-1042-4942-a903-8b3fec88cf64"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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",
+ "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\": \"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}",
+ "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": [
+ "af8da761-605a-4b8f-84fb-eb725a3e1104"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13892"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cc45d9b-8654-4844-9655-25323d8bc696"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:7cc45d9b-8654-4844-9655-25323d8bc696"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f683762-9819-478b-8ac7-61636e923ea4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13891"
+ ],
+ "x-ms-correlation-request-id": [
+ "27e719b0-7b48-44f3-a206-e6f04b884f9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:27e719b0-7b48-44f3-a206-e6f04b884f9f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "570e191b-f958-4d8d-b2f5-ff548fd9f4aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13890"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8a45c35-73a6-484f-b7ad-dfde5760f48a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:e8a45c35-73a6-484f-b7ad-dfde5760f48a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2330612-55a6-4579-88bb-04cc78b17903"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13889"
+ ],
+ "x-ms-correlation-request-id": [
+ "95738f14-d479-4663-aadc-d389c3c4530c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:95738f14-d479-4663-aadc-d389c3c4530c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "466"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ecf9a16-f183-4d85-b1d3-37298bc35942"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13888"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc8ba315-036c-4bfd-a16e-6ac4f040fea8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212435Z:fc8ba315-036c-4bfd-a16e-6ac4f040fea8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "13ffbec8-331a-4b35-9b93-72d4e579b00a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13887"
+ ],
+ "x-ms-correlation-request-id": [
+ "d646ba7a-bebb-4f62-a8a0-cfd430e80d54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:d646ba7a-bebb-4f62-a8a0-cfd430e80d54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:35 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dc2bf54c-8ad2-40d9-b9fe-d2508f1c1d42"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13886"
+ ],
+ "x-ms-correlation-request-id": [
+ "891f2735-5b84-4225-b59f-112dfdb19966"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:891f2735-5b84-4225-b59f-112dfdb19966"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "13c1e6dd-5714-497f-92c4-088638c0eaa6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13885"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5abbe3a-bdb1-4b00-a454-1b4aa44c5751"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:f5abbe3a-bdb1-4b00-a454-1b4aa44c5751"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "476"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "08a011f4-32fe-43e1-aac1-4c98030682bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13884"
+ ],
+ "x-ms-correlation-request-id": [
+ "5749d10f-d0cb-4bf7-9d4e-2d5fd13b8343"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:5749d10f-d0cb-4bf7-9d4e-2d5fd13b8343"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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=",
+ "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\": \"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]",
+ "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": [
+ "704488b5-ba66-4900-9d2a-2538eaf33121"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13883"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d0cbebc-1d0a-4483-81e9-85ac992aed77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:7d0cbebc-1d0a-4483-81e9-85ac992aed77"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5636366e-7605-4502-a547-cce13882f357"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13882"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8a1ad36-a2a7-4819-914f-5ce2503582f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:e8a1ad36-a2a7-4819-914f-5ce2503582f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab0d823b-bf1b-47dd-baf9-004f2e3cec65"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13881"
+ ],
+ "x-ms-correlation-request-id": [
+ "da58f65f-0c10-4614-8b28-4ff83e70378c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:da58f65f-0c10-4614-8b28-4ff83e70378c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "763"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3729435-f72e-4f5b-ae16-477d07bdee17"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13880"
+ ],
+ "x-ms-correlation-request-id": [
+ "856459f1-1bef-4213-b726-56c314711bcb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212436Z:856459f1-1bef-4213-b726-56c314711bcb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:36 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==",
+ "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\": \"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]",
+ "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": [
+ "8153ef03-1680-4042-9eeb-1859fcff2ea6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13879"
+ ],
+ "x-ms-correlation-request-id": [
+ "13ee4886-2c83-4517-9223-5050e7149569"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:13ee4886-2c83-4517-9223-5050e7149569"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "343"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8d0c430e-e138-407c-a46a-e18dc3ed2ae5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13878"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd6076f0-099c-4eb4-be38-94aa2578fff2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:bd6076f0-099c-4eb4-be38-94aa2578fff2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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=",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76acf77f-7e36-4e03-8506-6896410a980a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13877"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf84ab3e-5407-4976-9edb-eafeca37ed83"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:bf84ab3e-5407-4976-9edb-eafeca37ed83"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "586"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d64b02cb-aa4f-432b-92e7-f3cd2c3733a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13876"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ddbc7ac-7960-4611-a06e-1fc5c713f966"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:0ddbc7ac-7960-4611-a06e-1fc5c713f966"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16934c2a-03ef-44d4-a281-01edaf842883"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13875"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0f4bf9b-8680-4a57-bc6a-7722cce17a95"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:b0f4bf9b-8680-4a57-bc6a-7722cce17a95"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "574856e4-c163-45c3-93f0-e79d5989b6d7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13874"
+ ],
+ "x-ms-correlation-request-id": [
+ "4eb736e2-8a00-4cb3-96a7-e7276001ce48"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:4eb736e2-8a00-4cb3-96a7-e7276001ce48"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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==",
+ "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\": \"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]",
+ "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": [
+ "f8ae560d-04df-4da2-941e-856518c4be58"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13873"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7875a0f-50de-45df-bcce-88d81173242f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:a7875a0f-50de-45df-bcce-88d81173242f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c58f5ebd-90fc-4099-a2d6-ef7fb257cccb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13872"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7ae0769-cc85-48a8-921f-a9f9eb130dbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212437Z:e7ae0769-cc85-48a8-921f-a9f9eb130dbb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:37 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "228"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54449cfa-2f63-4d2a-a6b6-1eddcac570aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13871"
+ ],
+ "x-ms-correlation-request-id": [
+ "94fae7ca-74b2-4170-8572-b4945fd1f078"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:94fae7ca-74b2-4170-8572-b4945fd1f078"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "80945b7e-cf8b-4e04-b928-d370236836ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13870"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee3a2a76-e967-47b3-8e84-13abd85a8bd1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:ee3a2a76-e967-47b3-8e84-13abd85a8bd1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d46281f-e349-481a-8c14-f374069f9432"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13869"
+ ],
+ "x-ms-correlation-request-id": [
+ "9593bf43-8851-4802-9437-ce984d553919"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:9593bf43-8851-4802-9437-ce984d553919"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e7776499-19ff-428c-85bc-c8a416b4c27a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13868"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c1733d3-d752-4776-a7f8-8140f2c9b054"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:0c1733d3-d752-4776-a7f8-8140f2c9b054"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f6660c7e-5320-4b46-b0f7-7d6a3dcb6e42"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13867"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9c2e1ed-e43b-4388-a026-7d8d0df1e01a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:a9c2e1ed-e43b-4388-a026-7d8d0df1e01a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "169c6ca8-6762-467c-acd9-eaed7ca02f07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13866"
+ ],
+ "x-ms-correlation-request-id": [
+ "33203ea1-57f5-4b41-a4be-f23ea2664a8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:33203ea1-57f5-4b41-a4be-f23ea2664a8c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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=",
+ "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\": \"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]",
+ "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": [
+ "fd96ccda-5329-42de-bdcc-01fd4309926f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13865"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0859c0c-ac62-4d91-811e-d3c626da5cf6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:c0859c0c-ac62-4d91-811e-d3c626da5cf6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8233afe-0334-45fa-9d0d-b0261c6a68c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13864"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b69dca3-d181-48d5-8719-a671026d8af9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:5b69dca3-d181-48d5-8719-a671026d8af9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f99fe7a6-d39f-4bab-9d87-931f1bf978b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13863"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1c75784-e4a8-4c40-8fef-1819c7cad35a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212438Z:b1c75784-e4a8-4c40-8fef-1819c7cad35a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "cba34a0b-8f99-42fa-868e-713d1dc34463"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13862"
+ ],
+ "x-ms-correlation-request-id": [
+ "64765487-22f6-4143-85c1-943900faf40e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:64765487-22f6-4143-85c1-943900faf40e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:38 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1045"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "acdc088c-821f-484d-8c0a-6f288d2be1c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13861"
+ ],
+ "x-ms-correlation-request-id": [
+ "54a7911c-ed33-4cd4-a080-7a7350629ed7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:54a7911c-ed33-4cd4-a080-7a7350629ed7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8bb2a51f-6fe6-4edf-87f1-8dc4a2defa33"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13860"
+ ],
+ "x-ms-correlation-request-id": [
+ "067f8615-5fa9-40d3-923b-b92ed512fb0b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:067f8615-5fa9-40d3-923b-b92ed512fb0b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1354844-2ced-4ec4-b660-303713e6b0f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13859"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9f2d257-8908-45b4-939f-a83e7bc317cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:d9f2d257-8908-45b4-939f-a83e7bc317cf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a207f3c2-bc8c-4720-8118-918c24902262"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13858"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4ee5632-b444-4116-92da-7dde67412e7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:c4ee5632-b444-4116-92da-7dde67412e7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "525"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0cee9c3f-c13b-4527-b8ef-ec247d81e867"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13857"
+ ],
+ "x-ms-correlation-request-id": [
+ "80b2bc38-af77-466e-aeba-618bb5e35f18"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:80b2bc38-af77-466e-aeba-618bb5e35f18"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5d43b726-a6c0-4450-87b3-5b97ad2ceb0f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13856"
+ ],
+ "x-ms-correlation-request-id": [
+ "18055e43-94ba-44af-a93f-2b873d0233bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:18055e43-94ba-44af-a93f-2b873d0233bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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==",
+ "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\": \"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}",
+ "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": [
+ "845a2ebf-8d2a-42b8-ad38-23099a0e9660"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13855"
+ ],
+ "x-ms-correlation-request-id": [
+ "655cbf01-0a5f-4769-8c1d-30323c176e26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:655cbf01-0a5f-4769-8c1d-30323c176e26"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "605b3345-15a6-4ec6-935c-fbfa8247b29e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13854"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f31fc29-a716-4ebe-bec0-66122d0c5f07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212439Z:0f31fc29-a716-4ebe-bec0-66122d0c5f07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "520"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9ed64d29-de80-4fcf-b571-a7121c2eeae5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13853"
+ ],
+ "x-ms-correlation-request-id": [
+ "07b95141-fc8c-47d3-b8d2-5205c159f252"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:07b95141-fc8c-47d3-b8d2-5205c159f252"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:39 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "529"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd64d8be-88b5-4c25-b2fb-20c4ab2b1d97"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13852"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b9fa9a5-e891-4ca0-ae40-5aa9e9ebc653"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:9b9fa9a5-e891-4ca0-ae40-5aa9e9ebc653"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9dfe2fbd-5ca7-40c5-b299-c6506df8ded5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13851"
+ ],
+ "x-ms-correlation-request-id": [
+ "17342858-882d-4e77-a84b-9273923d1153"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:17342858-882d-4e77-a84b-9273923d1153"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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==",
+ "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\": \"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}",
+ "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": [
+ "d84ea394-ec30-4145-919a-ca0ec5553376"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13850"
+ ],
+ "x-ms-correlation-request-id": [
+ "6895acd9-3e46-4e5a-93ec-43690cb67d3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:6895acd9-3e46-4e5a-93ec-43690cb67d3a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af4a1a56-1163-4f0e-b4e1-5ac089f3c6c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13849"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1d38404-70fc-41f2-85bb-1f1fbda81582"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:a1d38404-70fc-41f2-85bb-1f1fbda81582"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "520"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8da026fd-ab97-41d7-9a0c-faf46dd92dcb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13848"
+ ],
+ "x-ms-correlation-request-id": [
+ "540336d6-82a1-453a-ae00-1eaa310699db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:540336d6-82a1-453a-ae00-1eaa310699db"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "489"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "32eea98f-0bad-4385-938c-087a80db43f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13847"
+ ],
+ "x-ms-correlation-request-id": [
+ "121895da-8092-43d8-9b5f-dca8a50b6c60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:121895da-8092-43d8-9b5f-dca8a50b6c60"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d32c18c1-5d77-4bd2-8662-d53408bde215"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13846"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b7305d4-d298-487a-b587-10e6d737d8a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:2b7305d4-d298-487a-b587-10e6d737d8a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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==",
+ "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\": \"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}",
+ "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": [
+ "5b6ca4d3-86b2-4ee1-b39f-fcf4fe567e61"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13845"
+ ],
+ "x-ms-correlation-request-id": [
+ "351e346b-ac6b-473a-bb93-8bd71d3ad5f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:351e346b-ac6b-473a-bb93-8bd71d3ad5f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "037101ee-0fa9-478c-81c2-e740cf88b85b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13844"
+ ],
+ "x-ms-correlation-request-id": [
+ "62f684c0-0753-49c1-89f3-3ee8409aaf79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212440Z:62f684c0-0753-49c1-89f3-3ee8409aaf79"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "470b82ef-e14e-46e0-a650-5309c84aa023"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13843"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f5866e9-7205-431f-b132-3c62eb4cfbe2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:6f5866e9-7205-431f-b132-3c62eb4cfbe2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "235"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e525d7f0-b446-4f80-8919-897ff6da8ca7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13842"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce464e0d-8729-4e4c-aa94-a52325a73a23"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:ce464e0d-8729-4e4c-aa94-a52325a73a23"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b6c8b319-9feb-403d-b978-efb66746662d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13841"
+ ],
+ "x-ms-correlation-request-id": [
+ "a89fb41e-e9fc-4352-a1ba-bf18bd2c757a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:a89fb41e-e9fc-4352-a1ba-bf18bd2c757a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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",
+ "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/basho/ArtifactTypes/VMImage/Offers/riak-2-0-1/Skus/rs201-o/Versions/1.0.0\"\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": [
+ "038c9b49-21cc-4cfc-a981-c866526544b3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13840"
+ ],
+ "x-ms-correlation-request-id": [
+ "829135e1-f035-4a1d-9d13-c40904cf39d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:829135e1-f035-4a1d-9d13-c40904cf39d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "466"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99fa6d34-37aa-4098-a1c6-364bfe081aef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13839"
+ ],
+ "x-ms-correlation-request-id": [
+ "47ef0ff9-1fc5-481d-8414-0415b5cc50c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:47ef0ff9-1fc5-481d-8414-0415b5cc50c6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "939"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "949b0b6d-f7c7-4bc4-ae69-f6cd593ee324"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13838"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa5448a7-06bc-4f03-81bc-5fda8377c5f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:fa5448a7-06bc-4f03-81bc-5fda8377c5f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ea4aceb8-af13-403a-80d0-493fd599a896"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13837"
+ ],
+ "x-ms-correlation-request-id": [
+ "485c20a9-54dc-4703-8391-413562734a5e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212441Z:485c20a9-54dc-4703-8391-413562734a5e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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",
+ "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.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]",
+ "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": [
+ "5f5ed17b-3f1e-4da7-9db9-c0361310ebee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13836"
+ ],
+ "x-ms-correlation-request-id": [
+ "db5eaaaa-c21e-45fa-a6fe-14a0b09cf623"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:db5eaaaa-c21e-45fa-a6fe-14a0b09cf623"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:41 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "549f8e53-0df5-4de2-8bff-ac0f16a7b9ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13835"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0c29fe0-c407-4dcb-9615-083aa294f742"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:d0c29fe0-c407-4dcb-9615-083aa294f742"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d9eb02cc-0d74-43c1-85e2-c38822bb7f7b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13834"
+ ],
+ "x-ms-correlation-request-id": [
+ "f923fecb-16b0-4bae-a931-51042ca5ad70"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:f923fecb-16b0-4bae-a931-51042ca5ad70"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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",
+ "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\": \"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]",
+ "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": [
+ "caca638d-6aa8-4b2a-aa3b-b8bbed5b5b64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13833"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c45dcdb-a993-4db0-8f8c-4d0a89b9d694"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:4c45dcdb-a993-4db0-8f8c-4d0a89b9d694"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b622286c-141d-4581-bedd-7dc8d2fef7d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13832"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f107466-88d0-4e55-84fa-8edda97953c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:7f107466-88d0-4e55-84fa-8edda97953c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e3fa046-4569-40b1-aa22-5ce5fa32f7df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13831"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6a0dfbe-97a9-4a5e-a1ff-63d2b332b19a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:f6a0dfbe-97a9-4a5e-a1ff-63d2b332b19a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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=",
+ "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\": \"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]",
+ "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": [
+ "4613ddf2-9bcc-4029-a75a-3d4182eca981"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13830"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a24956e-c840-4387-9859-b3fbc7b90d99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:6a24956e-c840-4387-9859-b3fbc7b90d99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "452"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "965dc18f-c0dd-4a4d-9213-f1b5c3ef8cfd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13829"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef460b02-e1da-4b59-90c0-3dc490c70fda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212442Z:ef460b02-e1da-4b59-90c0-3dc490c70fda"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f00929c-1689-42ff-98c7-af6bfe64b0d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13828"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e7a02bc-f675-40e0-8039-d975c79a7e86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:1e7a02bc-f675-40e0-8039-d975c79a7e86"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:42 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5ad76f0f-8eef-4644-a44b-7e66934c996c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13827"
+ ],
+ "x-ms-correlation-request-id": [
+ "164d5139-8231-4b44-a12b-64cde9684084"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:164d5139-8231-4b44-a12b-64cde9684084"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a95f5b40-409c-4ef4-bf63-90998405b6e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13826"
+ ],
+ "x-ms-correlation-request-id": [
+ "decadd4f-b0eb-4599-ba7c-069640bc6cc4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:decadd4f-b0eb-4599-ba7c-069640bc6cc4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63ca2400-590a-4f0c-90cc-5e14ce6925fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13825"
+ ],
+ "x-ms-correlation-request-id": [
+ "a8f71b09-0cdc-4d61-879d-b9f641e7e28a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:a8f71b09-0cdc-4d61-879d-b9f641e7e28a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a46934fb-a852-410e-988c-54ea5ed2ed4b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13824"
+ ],
+ "x-ms-correlation-request-id": [
+ "2383983e-9a8a-4542-aedd-373b47873ae8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:2383983e-9a8a-4542-aedd-373b47873ae8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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=",
+ "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/bluetalon/ArtifactTypes/VMImage/Offers/bluetalon/Skus/bluetalon/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33b16c4f-f012-4ad7-867e-850a1381be0d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13823"
+ ],
+ "x-ms-correlation-request-id": [
+ "498e6f7e-8f0a-44a4-a00e-3eea7852c9f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:498e6f7e-8f0a-44a4-a00e-3eea7852c9f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "476"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4170a245-0c9a-475e-8075-1e54eeb7de27"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13822"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a6e9fbd-e9e5-4740-8f98-203a0a55d72c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:1a6e9fbd-e9e5-4740-8f98-203a0a55d72c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76aed6fd-88e9-4784-8da3-db9ff7698ea0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13821"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5a6dede-43a5-4445-97c9-ab051aec0d06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:f5a6dede-43a5-4445-97c9-ab051aec0d06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae3afeb0-c2ba-4616-99b0-2317c89954c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13820"
+ ],
+ "x-ms-correlation-request-id": [
+ "f56d1da6-1d23-4d60-b226-30dc9e369c84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:f56d1da6-1d23-4d60-b226-30dc9e369c84"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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=",
+ "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/boundlessgeo/ArtifactTypes/VMImage/Offers/opengeosuite/Skus/opengeosuite_postgis_tomcat/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1cdbb37d-a171-4634-80f1-58ae29188ae2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13819"
+ ],
+ "x-ms-correlation-request-id": [
+ "efa93ddf-bdb9-4e64-9764-b1543e75e43e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212443Z:efa93ddf-bdb9-4e64-9764-b1543e75e43e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c7de0a7-724a-4a71-8880-0fa6d0232770"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13818"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ef273dd-13cb-4308-bccc-20a188c1c25d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:5ef273dd-13cb-4308-bccc-20a188c1c25d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:43 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "354e23fd-1479-451d-98a7-8a45db912100"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13817"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f339deb-5d1d-49e7-b8c5-cca49f38c639"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:0f339deb-5d1d-49e7-b8c5-cca49f38c639"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30b0a902-fe5c-40a9-90d8-c44b876322ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13816"
+ ],
+ "x-ms-correlation-request-id": [
+ "1210736b-82a9-4db3-874b-da51def42a43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:1210736b-82a9-4db3-874b-da51def42a43"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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=",
+ "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/boxless/ArtifactTypes/VMImage/Offers/boxless/Skus/boxless/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2e6c0c67-929d-43ee-a55b-f7b62a5f3aaa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13815"
+ ],
+ "x-ms-correlation-request-id": [
+ "6353a2e7-8141-4cfd-8fea-4257090d09fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:6353a2e7-8141-4cfd-8fea-4257090d09fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0d852667-4427-44dd-8ad1-b923882550c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13814"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ee25fd5-acac-4e5c-92ee-99b1db6494cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:8ee25fd5-acac-4e5c-92ee-99b1db6494cf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "14246882-15fa-4337-a7c9-36e63fa9f1ed"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13813"
+ ],
+ "x-ms-correlation-request-id": [
+ "10c0592b-bae1-4736-9ec3-61fa4624bcc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:10c0592b-bae1-4736-9ec3-61fa4624bcc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b6174559-201b-4da6-950d-c0706785638f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13812"
+ ],
+ "x-ms-correlation-request-id": [
+ "e42ff7f8-f506-49f7-8b15-0651db254976"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:e42ff7f8-f506-49f7-8b15-0651db254976"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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==",
+ "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/bryte/ArtifactTypes/VMImage/Offers/bryteflow-cdc-free-trial/Skus/bryteflowcdc/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76fb0c25-5a7a-48f3-be6c-a96206d8aa32"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13811"
+ ],
+ "x-ms-correlation-request-id": [
+ "feb6d038-7c5b-4789-ae62-7d9893b4b574"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212444Z:feb6d038-7c5b-4789-ae62-7d9893b4b574"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5c11303-87e9-4c9e-8274-a524c924c326"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13810"
+ ],
+ "x-ms-correlation-request-id": [
+ "f281803b-69c9-4fa2-b187-a9e0a9a491a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:f281803b-69c9-4fa2-b187-a9e0a9a491a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:44 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "41e21c96-c84b-41c0-b056-ef8d5ebefd10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13809"
+ ],
+ "x-ms-correlation-request-id": [
+ "afcb6423-bb6a-4a88-a529-3879dbc26d8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:afcb6423-bb6a-4a88-a529-3879dbc26d8f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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=",
+ "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\": \"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]",
+ "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": [
+ "d8b22aee-b1b5-4e03-9196-7e352a78e5c2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13808"
+ ],
+ "x-ms-correlation-request-id": [
+ "26739c08-61d6-4390-b138-979377594b43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:26739c08-61d6-4390-b138-979377594b43"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67087a0e-c2a5-4579-a300-54a8c0a6e80d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13807"
+ ],
+ "x-ms-correlation-request-id": [
+ "0687c0a6-8a7f-489e-b1fc-aa591fe19437"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:0687c0a6-8a7f-489e-b1fc-aa591fe19437"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2e24b45-9d8e-4e25-8633-0ce13bfe5c48"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13806"
+ ],
+ "x-ms-correlation-request-id": [
+ "60ff975b-b52c-46d3-8c36-5ea71b87e880"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:60ff975b-b52c-46d3-8c36-5ea71b87e880"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "90644702-f79e-4f6c-aa64-b1994bfa1eb7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13805"
+ ],
+ "x-ms-correlation-request-id": [
+ "2635936b-066d-4fb1-b0dc-bf48ff2a09dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:2635936b-066d-4fb1-b0dc-bf48ff2a09dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cda67ca5-d100-4a3f-ac34-ad8bb94c2d44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13804"
+ ],
+ "x-ms-correlation-request-id": [
+ "da14eec3-a045-4513-902c-5e877c2bdd60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:da14eec3-a045-4513-902c-5e877c2bdd60"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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",
+ "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/buddhalabs/ArtifactTypes/VMImage/Offers/sles_12_pci/Skus/sles12-pci/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5fcc1d4-905f-44c4-b0b8-70f52dd31ae2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13803"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d06c143-258f-4436-b141-e138a2237ca7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212445Z:8d06c143-258f-4436-b141-e138a2237ca7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a407cc2b-607d-4a00-934d-6ac8bdb27071"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13802"
+ ],
+ "x-ms-correlation-request-id": [
+ "33ec2943-130c-472f-8301-33127f1ecfc1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:33ec2943-130c-472f-8301-33127f1ecfc1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:45 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "817798a4-5f00-4464-8edb-3a80a234624c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13801"
+ ],
+ "x-ms-correlation-request-id": [
+ "9723d189-af70-42f5-a60b-742cb7f2299d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:9723d189-af70-42f5-a60b-742cb7f2299d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c61e057-35f0-4b0e-a314-859404948164"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13800"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f7e33a8-4e68-4b2d-9069-28159379c626"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:0f7e33a8-4e68-4b2d-9069-28159379c626"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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==",
+ "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/bwappengine/ArtifactTypes/VMImage/Offers/boardwalk/Skus/boardwalk/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6be4fe79-ff68-47b2-be2e-3aa678385c40"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13799"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6c46095-ab00-400e-87db-11407de1838b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:d6c46095-ab00-400e-87db-11407de1838b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b983c919-ad16-439c-a018-3a04c2b734dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13798"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cde18e4-d094-4b6f-b780-50c44ad3a42b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:9cde18e4-d094-4b6f-b780-50c44ad3a42b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1009"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2f6e7689-224a-4298-b11a-78fa86fc8ab4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13797"
+ ],
+ "x-ms-correlation-request-id": [
+ "e49b4e0a-3351-40f9-b1b0-4e9d46156c77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212446Z:e49b4e0a-3351-40f9-b1b0-4e9d46156c77"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54c7491f-98bc-47e6-9d7b-8dd58ea0de3c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13796"
+ ],
+ "x-ms-correlation-request-id": [
+ "10a790a9-0e82-4e6c-946f-57515f104e8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:10a790a9-0e82-4e6c-946f-57515f104e8f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2805"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dcc40f3b-4d91-43b7-8f33-33f9ea4cc85d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13795"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1f3358b-458a-4dbd-9742-7956a5782b13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:f1f3358b-458a-4dbd-9742-7956a5782b13"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:46 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "68f902cb-6bb1-46d5-9ac4-4b8c1336f506"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13794"
+ ],
+ "x-ms-correlation-request-id": [
+ "6344ac48-54c6-4641-8577-4ff807b22d8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:6344ac48-54c6-4641-8577-4ff807b22d8a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab032245-3ffa-465c-9c15-a81e0d83e67d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13793"
+ ],
+ "x-ms-correlation-request-id": [
+ "2dda942a-fcb5-4d90-a87c-c1c9b41d5a9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:2dda942a-fcb5-4d90-a87c-c1c9b41d5a9d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4bd02a37-b455-40ec-9052-09ad82b7a40f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13792"
+ ],
+ "x-ms-correlation-request-id": [
+ "87133770-7c15-4d4f-ab81-7e0ded52c780"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:87133770-7c15-4d4f-ab81-7e0ded52c780"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3775da1b-257c-42e1-a15b-560c88e91745"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13791"
+ ],
+ "x-ms-correlation-request-id": [
+ "cda52c99-443e-45fc-bc60-56e653474403"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:cda52c99-443e-45fc-bc60-56e653474403"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd553e65-c02d-4f59-abf7-215f6e3db11b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13790"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cf71666-e6f5-4e16-8a62-696f9e827e22"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:9cf71666-e6f5-4e16-8a62-696f9e827e22"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00cc8320-9f5d-47d1-8db8-ebf2bce83c75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13789"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e3a50c7-4166-4d96-8eff-ed7d852ad40e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:1e3a50c7-4166-4d96-8eff-ed7d852ad40e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35b06157-bfd4-4e8c-80f4-2402784322fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13788"
+ ],
+ "x-ms-correlation-request-id": [
+ "425acdf1-cc9a-4343-9369-82fd9606acfa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212447Z:425acdf1-cc9a-4343-9369-82fd9606acfa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f21ad93a-12ab-4446-8247-33cd7108a956"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13787"
+ ],
+ "x-ms-correlation-request-id": [
+ "25e390fc-1d1d-444d-8cea-732edaa217b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:25e390fc-1d1d-444d-8cea-732edaa217b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bd2bec2-cda7-4cc0-af07-95a7bb5c6f36"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13786"
+ ],
+ "x-ms-correlation-request-id": [
+ "601c637e-ce97-4521-9422-9d082c355cb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:601c637e-ce97-4521-9422-9d082c355cb2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:47 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=",
+ "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\": \"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}",
+ "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": [
+ "04b00843-1992-4f05-b2fa-f3448f46fc61"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13785"
+ ],
+ "x-ms-correlation-request-id": [
+ "9162eada-f2dd-4b09-a040-effb9e6efc33"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:9162eada-f2dd-4b09-a040-effb9e6efc33"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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",
+ "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\": \"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]",
+ "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": [
+ "2b4a7682-231b-404b-b3cf-c40528b0bf08"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13784"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed4df401-233d-4814-b648-eb114f17ffc2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:ed4df401-233d-4814-b648-eb114f17ffc2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "df55f3c2-7441-4dff-a880-80d88282aa60"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13783"
+ ],
+ "x-ms-correlation-request-id": [
+ "89da538a-f15f-4043-89b8-b6cc2864f3c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:89da538a-f15f-4043-89b8-b6cc2864f3c2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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=",
+ "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\": \"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}",
+ "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": [
+ "69f0a09a-88ac-466a-8842-e165cc13be5b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13782"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff09f2ab-9eea-45cb-947b-c3b0a7681467"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:ff09f2ab-9eea-45cb-947b-c3b0a7681467"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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=",
+ "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\": \"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]",
+ "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": [
+ "1b006a0f-5694-4c12-90b0-76d109eddf85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13781"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e95b947-643e-4b5b-9be0-4a85a45eb54e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:8e95b947-643e-4b5b-9be0-4a85a45eb54e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2054"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "71b8605a-35b6-4762-ad46-6fd55d3a62b3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13780"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8d09c3b-25e7-4f11-b73e-031de5eb810e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:e8d09c3b-25e7-4f11-b73e-031de5eb810e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9bbf4376-fa05-4a64-9858-e0fb77d17857"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13779"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e349f89-5efe-49eb-b9ef-d8527d1b8667"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212448Z:8e349f89-5efe-49eb-b9ef-d8527d1b8667"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1d8f62a-91ae-4281-a8a2-34ccae65c6f9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13778"
+ ],
+ "x-ms-correlation-request-id": [
+ "73fa6602-53fa-4074-a936-c81e50aac35f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:73fa6602-53fa-4074-a936-c81e50aac35f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "75458de7-255c-49b7-9a3a-755b71eec20e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13777"
+ ],
+ "x-ms-correlation-request-id": [
+ "08704786-d421-4525-affc-b3ca9028a5a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:08704786-d421-4525-affc-b3ca9028a5a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7065eb91-2967-4210-85ff-c53ff57c896d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13776"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c0ce3fb-8a50-4420-844c-49be3f892224"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:4c0ce3fb-8a50-4420-844c-49be3f892224"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21cee932-0511-49a8-b6f9-a011327e63c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13775"
+ ],
+ "x-ms-correlation-request-id": [
+ "7356915b-f2b6-45fb-a5a4-babce91e357b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:7356915b-f2b6-45fb-a5a4-babce91e357b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6a326812-b286-41fc-b82d-2c225d46241c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13774"
+ ],
+ "x-ms-correlation-request-id": [
+ "2801662e-b49e-489b-afee-72e2c5150a9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:2801662e-b49e-489b-afee-72e2c5150a9d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3029f568-849a-4733-9a6d-f2feb3feb441"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13773"
+ ],
+ "x-ms-correlation-request-id": [
+ "24366699-b37e-479c-9386-4bcc328d1fcc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:24366699-b37e-479c-9386-4bcc328d1fcc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5093"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "229f891c-d966-49b7-bd43-a4fbd638c48a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13772"
+ ],
+ "x-ms-correlation-request-id": [
+ "fafcbed0-e884-4f18-b452-f3198a52ffbf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:fafcbed0-e884-4f18-b452-f3198a52ffbf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1998"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a062523-8db6-4a7e-a0fb-1e6f07581d1e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13771"
+ ],
+ "x-ms-correlation-request-id": [
+ "710945cd-29c7-4a43-8a77-27166b863625"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:710945cd-29c7-4a43-8a77-27166b863625"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0ac4222-3d02-458a-8d18-d0515d9b3580"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13770"
+ ],
+ "x-ms-correlation-request-id": [
+ "75d01554-592c-4134-a77a-f37c0159b77a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212449Z:75d01554-592c-4134-a77a-f37c0159b77a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5d288af-b3b1-451a-83c1-1d7d8a10190a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13769"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca232158-f2e6-47cd-b9f1-427338bf7b99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:ca232158-f2e6-47cd-b9f1-427338bf7b99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6e5ad4ff-7884-4e58-9698-07e233a08a8f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13768"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3da2a10-5d49-4c36-baf9-53aa1c5c9af8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:b3da2a10-5d49-4c36-baf9-53aa1c5c9af8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61a5478a-ffec-40d5-8d04-76b85f5dc7c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13767"
+ ],
+ "x-ms-correlation-request-id": [
+ "240a0218-daca-47b0-899b-12c79f822abc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:240a0218-daca-47b0-899b-12c79f822abc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2457e34f-eb5a-4e85-8f62-7b5d9c276bbd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13766"
+ ],
+ "x-ms-correlation-request-id": [
+ "abaec7f5-9895-4c56-b7af-f5d5dc7f659a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:abaec7f5-9895-4c56-b7af-f5d5dc7f659a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c28931b-9a13-43ba-a53c-60acb0cabb7d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13765"
+ ],
+ "x-ms-correlation-request-id": [
+ "500d5010-0b41-4251-bb77-7597d97ee0e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:500d5010-0b41-4251-bb77-7597d97ee0e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19e19ff0-515d-4eb7-abcc-99f1419497f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13764"
+ ],
+ "x-ms-correlation-request-id": [
+ "b037d887-5337-4085-8944-9f8efe7b6f7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:b037d887-5337-4085-8944-9f8efe7b6f7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65db0ac6-d423-47fb-95af-9f96c95acd5a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13763"
+ ],
+ "x-ms-correlation-request-id": [
+ "860804bc-9036-40be-bee5-fb0ea62f9e06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:860804bc-9036-40be-bee5-fb0ea62f9e06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3bd2473d-4331-4017-8159-d721f3448670"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13762"
+ ],
+ "x-ms-correlation-request-id": [
+ "200a4d12-509e-4593-bf98-2c5ef0840086"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:200a4d12-509e-4593-bf98-2c5ef0840086"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e5722692-3ec1-4d24-be8f-cb98a9c88d7b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13761"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e347176-25a8-4627-a5da-0a564e0340d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:3e347176-25a8-4627-a5da-0a564e0340d6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "41ff5be7-69d9-4739-9654-8fa1a9ead37b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13760"
+ ],
+ "x-ms-correlation-request-id": [
+ "5639f1d2-e423-40f2-b178-2907f1072a7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212450Z:5639f1d2-e423-40f2-b178-2907f1072a7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "74bbac6c-2664-44b1-a12b-7261082b0e9a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13759"
+ ],
+ "x-ms-correlation-request-id": [
+ "97cb8035-a444-4506-96ba-0a540b9efe86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:97cb8035-a444-4506-96ba-0a540b9efe86"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed72bd85-df19-40b8-9952-c5d6ef7b5b17"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13758"
+ ],
+ "x-ms-correlation-request-id": [
+ "3103c99d-0833-4656-ba32-49601bb9d647"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:3103c99d-0833-4656-ba32-49601bb9d647"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cae01cca-22bb-4f91-82e8-13845f01786c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13757"
+ ],
+ "x-ms-correlation-request-id": [
+ "91987478-ac47-43cc-95ea-2c5e0e2475b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:91987478-ac47-43cc-95ea-2c5e0e2475b9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5aea7ea3-9d09-49a4-a36d-f33b7df02bdb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13756"
+ ],
+ "x-ms-correlation-request-id": [
+ "89b73988-348e-452b-9840-c2c669603b42"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:89b73988-348e-452b-9840-c2c669603b42"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe0a30e9-7d07-4e47-a4e0-7be1208ead20"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13755"
+ ],
+ "x-ms-correlation-request-id": [
+ "08dd3e2d-4764-4777-9cb2-63728edb6dac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:08dd3e2d-4764-4777-9cb2-63728edb6dac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eee8aa86-07fa-4911-b66f-7804f6026952"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13754"
+ ],
+ "x-ms-correlation-request-id": [
+ "94695042-064a-46a0-a799-fbd17b059609"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:94695042-064a-46a0-a799-fbd17b059609"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b2ffe93-95c5-4b50-9598-84954d29bd59"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13753"
+ ],
+ "x-ms-correlation-request-id": [
+ "93a44f22-0f55-4a47-bf64-5ab9545f42d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:93a44f22-0f55-4a47-bf64-5ab9545f42d5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d6bf7d1b-88cf-4ce1-830e-f2d38bbeba44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13752"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1fb3983-1965-41da-83e4-7b4c8cbd405c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:f1fb3983-1965-41da-83e4-7b4c8cbd405c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "119d7b39-3d25-4090-9b0a-51e77008de28"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13751"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5ac4057-7572-4efe-b621-f4e3054d478e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:b5ac4057-7572-4efe-b621-f4e3054d478e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4a359d7-a7ff-4590-a4d7-378d998590c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13750"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b55792b-e021-41b5-bec5-322366007ecc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212451Z:7b55792b-e021-41b5-bec5-322366007ecc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "48c0e57e-53f3-479f-aa36-1b7c742bc2a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13749"
+ ],
+ "x-ms-correlation-request-id": [
+ "4af12927-5170-4736-b324-fb5942effb32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:4af12927-5170-4736-b324-fb5942effb32"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "098d4f83-23bd-4b54-a87d-9c917ab11b97"
+ ],
+ "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": [
+ "6cfcd776-f415-4f5b-9dd4-8bdf71bac674"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:6cfcd776-f415-4f5b-9dd4-8bdf71bac674"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8d1b1478-d0b2-4776-af58-9225db52542d"
+ ],
+ "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": [
+ "687eaa8f-3450-4cb3-aaac-43336b8d94b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:687eaa8f-3450-4cb3-aaac-43336b8d94b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59fa631a-bf73-4483-81ef-f9d286f2fea6"
+ ],
+ "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": [
+ "7894c990-58fc-4ff9-a517-e06dc84bb684"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:7894c990-58fc-4ff9-a517-e06dc84bb684"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "766a9d8b-3bfa-4673-9a59-7dd14f255dd0"
+ ],
+ "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": [
+ "b6864b95-7750-414b-b87f-77d47e169845"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:b6864b95-7750-414b-b87f-77d47e169845"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe40cbfe-683d-4b08-8f83-ebedab7ea1d0"
+ ],
+ "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": [
+ "580c7b3b-9219-4046-a6dd-9d1ee87a97df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:580c7b3b-9219-4046-a6dd-9d1ee87a97df"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2913"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "453ff403-89dd-413d-bbe1-071a183ccaca"
+ ],
+ "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": [
+ "c3034865-8eb2-45ce-b718-23d5b59e8604"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:c3034865-8eb2-45ce-b718-23d5b59e8604"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "38c335d5-8ce6-4d7c-94ae-dc08790a2d86"
+ ],
+ "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": [
+ "73290832-d05a-4e69-8238-84e8809ad547"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:73290832-d05a-4e69-8238-84e8809ad547"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "e46998f1-34a4-4f87-9f19-454f296926cf"
+ ],
+ "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": [
+ "7b101f0d-d346-4bdd-9d8c-7ac1cf8e71c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:7b101f0d-d346-4bdd-9d8c-7ac1cf8e71c1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "2267dbb9-9e81-4cd9-9564-12971bab4d34"
+ ],
+ "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": [
+ "70d7b227-42ef-44b6-9187-396d95db6f0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:70d7b227-42ef-44b6-9187-396d95db6f0d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "8d991066-0373-4bb6-bf3c-ce14a16d71d0"
+ ],
+ "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": [
+ "cab515ab-cb9e-465e-9e9b-cee076ba7e0a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212452Z:cab515ab-cb9e-465e-9e9b-cee076ba7e0a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "f78f405c-3fb7-4804-8ea9-88a7d7305a73"
+ ],
+ "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": [
+ "ae85d0a3-2276-475d-be07-b4ab0203e448"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:ae85d0a3-2276-475d-be07-b4ab0203e448"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "f5698589-6774-4be5-972b-d6a455c2d7b3"
+ ],
+ "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": [
+ "479362b3-7983-412f-adf2-b472c7477259"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:479362b3-7983-412f-adf2-b472c7477259"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "e723b053-632b-49ee-a56d-295ea895d705"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13736"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ad9083a-f5e3-493c-a589-ca15a3218588"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:8ad9083a-f5e3-493c-a589-ca15a3218588"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "2595e251-63a8-4907-81e9-92233d588739"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13735"
+ ],
+ "x-ms-correlation-request-id": [
+ "62605c7c-a127-4096-a079-deff02af61fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:62605c7c-a127-4096-a079-deff02af61fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:52 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=",
+ "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\": \"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}",
+ "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": [
+ "f7e69615-656f-4d7f-9efa-5559232c743d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13734"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ed44f9f-0b9b-47f2-b0ba-f678c7925d07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:5ed44f9f-0b9b-47f2-b0ba-f678c7925d07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "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": [
+ "959156fc-197d-448c-b842-ea8dae1df405"
+ ],
+ "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": [
+ "8ae52a75-8b58-4f00-8bdc-e886120e35c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:8ae52a75-8b58-4f00-8bdc-e886120e35c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5988"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5680d9e-a655-4458-932e-7d4f7feaf26c"
+ ],
+ "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": [
+ "5614a351-58a2-4fbd-9f65-79e14581326b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:5614a351-58a2-4fbd-9f65-79e14581326b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8fe352df-405f-450f-bb03-24ff1ebf8e01"
+ ],
+ "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": [
+ "3c3a9053-298a-44ea-8a35-28e7081145b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:3c3a9053-298a-44ea-8a35-28e7081145b2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dc199d62-fcad-4a40-9fd6-9a5cfbc00110"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13730"
+ ],
+ "x-ms-correlation-request-id": [
+ "35984ed0-9af3-44a2-9169-74fef3f57e25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:35984ed0-9af3-44a2-9169-74fef3f57e25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "309a99c7-d90f-4646-aa8b-7b869f60185b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13729"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d659701-8c3b-4e54-86a1-166bbf2ea290"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212453Z:4d659701-8c3b-4e54-86a1-166bbf2ea290"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "120fb12c-72c2-45d9-b211-b4f2d811abcd"
+ ],
+ "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": [
+ "0bd9894d-5b61-4e39-a1c7-6ff75438d204"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:0bd9894d-5b61-4e39-a1c7-6ff75438d204"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed1f66d2-50b0-4ae4-9a6b-00310c8ff829"
+ ],
+ "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": [
+ "e7718804-8ac3-47b1-8e8c-0e140f5aa666"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:e7718804-8ac3-47b1-8e8c-0e140f5aa666"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0186b730-a6d5-4fce-bb2c-2ef318b30948"
+ ],
+ "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": [
+ "74d2ac96-45e8-4474-af70-c3182f13afcd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:74d2ac96-45e8-4474-af70-c3182f13afcd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "830b887d-3ffa-4b1e-b3a1-10be87cf252f"
+ ],
+ "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": [
+ "3666272d-e2b8-437c-9567-768649486a83"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:3666272d-e2b8-437c-9567-768649486a83"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9183039c-ab17-4a37-943b-5b3269504a75"
+ ],
+ "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": [
+ "c90834a5-f844-4929-8cc3-7b0784a8b61b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:c90834a5-f844-4929-8cc3-7b0784a8b61b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39578285-17fd-4dcf-aab1-e780df958311"
+ ],
+ "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": [
+ "dba337ba-715e-483f-a531-38bcc48e4127"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:dba337ba-715e-483f-a531-38bcc48e4127"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "691f5a2d-a4b0-4898-a063-8c050bb2a911"
+ ],
+ "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": [
+ "1228e1c8-0e92-40ff-a7b4-d323244ef5f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:1228e1c8-0e92-40ff-a7b4-d323244ef5f9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d53966eb-47c9-47b4-9e67-24b83da339bb"
+ ],
+ "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": [
+ "16a65415-5b26-48f5-ac7d-44482c72e5e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:16a65415-5b26-48f5-ac7d-44482c72e5e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9dfbfbb-c079-4c14-bbff-d86fbd13a020"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13720"
+ ],
+ "x-ms-correlation-request-id": [
+ "814928f0-05e3-4906-85c4-c8fd9aba092b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:814928f0-05e3-4906-85c4-c8fd9aba092b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e7e5016d-b32a-4e1a-9455-32b223502871"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13719"
+ ],
+ "x-ms-correlation-request-id": [
+ "23444622-00c7-4f84-b6c2-0f4762d79812"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212454Z:23444622-00c7-4f84-b6c2-0f4762d79812"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e9a2fd9e-a405-441a-bdcf-fc990fff25f1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13718"
+ ],
+ "x-ms-correlation-request-id": [
+ "803cccc4-033d-48ed-a53e-4dc4b4eed4bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:803cccc4-033d-48ed-a53e-4dc4b4eed4bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "175717e4-bfa9-49fc-bd7c-c1c8c58751d2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13717"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7bcaa44-7f23-46c2-bc53-c64c067fdaac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:c7bcaa44-7f23-46c2-bc53-c64c067fdaac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "031a3109-6eef-4684-af86-ce745c25bf87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13716"
+ ],
+ "x-ms-correlation-request-id": [
+ "01a7519e-8441-4523-941e-42a61679f658"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:01a7519e-8441-4523-941e-42a61679f658"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2fb54f8-dfbc-4757-a566-7accc893733c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13715"
+ ],
+ "x-ms-correlation-request-id": [
+ "74dd6598-5c3c-4225-9f06-996983993f63"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:74dd6598-5c3c-4225-9f06-996983993f63"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8ed9f6f0-5791-44b4-9360-261568d56fc5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13714"
+ ],
+ "x-ms-correlation-request-id": [
+ "24313104-cbf5-4be2-a328-3c51d8afe1f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:24313104-cbf5-4be2-a328-3c51d8afe1f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8ff8f84f-37cc-4a02-b5d0-2ab8c1d3377e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13713"
+ ],
+ "x-ms-correlation-request-id": [
+ "328620d3-fb60-4e95-9668-4706497f7e36"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:328620d3-fb60-4e95-9668-4706497f7e36"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f63c2ed7-fc25-4125-afc0-2f268ba70049"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13712"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbb52598-55ca-4a03-af3a-da3373603e2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:cbb52598-55ca-4a03-af3a-da3373603e2b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d3dd2dc-9b5e-44b1-b20c-85e4fe4f7e84"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13711"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b3a663b-b307-4478-b338-599bf83cec59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:7b3a663b-b307-4478-b338-599bf83cec59"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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==",
+ "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\": \"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]",
+ "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": [
+ "7dd9344c-164d-4ea9-83da-296f18cbce55"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13710"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a4a6b3b-19ae-4a35-a089-298fdd9f9792"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:1a4a6b3b-19ae-4a35-a089-298fdd9f9792"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f67c93f-3f60-4fde-91f0-1c75eef87de3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13709"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6a8ddbd-f394-419c-89c1-f619d01ce7bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212455Z:a6a8ddbd-f394-419c-89c1-f619d01ce7bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "fa2e641e-a29f-4c1b-9e89-7fa56a05436a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13708"
+ ],
+ "x-ms-correlation-request-id": [
+ "87763edc-141a-47eb-8b28-84e49370d4df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:87763edc-141a-47eb-8b28-84e49370d4df"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1998"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab1868fa-e8dd-4a4a-a71c-7659a960ebd5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13707"
+ ],
+ "x-ms-correlation-request-id": [
+ "22f4b9f1-ff4c-4a78-9a60-9b8a0ffac472"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:22f4b9f1-ff4c-4a78-9a60-9b8a0ffac472"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bae8dab1-0918-49d4-8320-75c5320812e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13706"
+ ],
+ "x-ms-correlation-request-id": [
+ "da87eb9a-e1b7-4403-a887-35761db2b036"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:da87eb9a-e1b7-4403-a887-35761db2b036"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59bab200-debc-48ab-8c6a-7efb7b397946"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13705"
+ ],
+ "x-ms-correlation-request-id": [
+ "37d7435c-2db5-48ab-9dcd-ec5485da8d8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:37d7435c-2db5-48ab-9dcd-ec5485da8d8b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64712a68-8722-4e85-93ab-6fa0ba685f8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13704"
+ ],
+ "x-ms-correlation-request-id": [
+ "438dc6a9-2cf7-4d60-808f-66cc326950fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:438dc6a9-2cf7-4d60-808f-66cc326950fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4173d318-1c29-4a50-8560-9a0fbe008b53"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13703"
+ ],
+ "x-ms-correlation-request-id": [
+ "8deb45f2-e641-4703-8af9-c373ca91b5ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:8deb45f2-e641-4703-8af9-c373ca91b5ba"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee278821-b3bd-46ca-b7f4-24426608e012"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13702"
+ ],
+ "x-ms-correlation-request-id": [
+ "f80d9ebd-0982-4195-bfe1-e75d6a49a599"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:f80d9ebd-0982-4195-bfe1-e75d6a49a599"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fd5faa0f-409b-4cea-b54b-a3c856708389"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13701"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3971e57-7fdc-449f-a203-be9737444cfd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:c3971e57-7fdc-449f-a203-be9737444cfd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "216ea40e-73c2-4417-8298-a954274daaee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13700"
+ ],
+ "x-ms-correlation-request-id": [
+ "50a6a0ed-28c6-4101-82d0-3087d386cf6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:50a6a0ed-28c6-4101-82d0-3087d386cf6c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1713"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "859d3b40-3dc2-41c9-bd52-6405ebd2250e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13699"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed573a52-c2b2-4967-84c9-caa8a3237f91"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:ed573a52-c2b2-4967-84c9-caa8a3237f91"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe7f1187-d60b-4d06-afca-486d34933c44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13698"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7d62642-8e61-44c1-844b-633c75999d71"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212456Z:c7d62642-8e61-44c1-844b-633c75999d71"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9358a8f-363e-4a7b-a8b8-a37c4e3c2a68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13697"
+ ],
+ "x-ms-correlation-request-id": [
+ "51f06f35-3e12-4a40-9a85-f5f3b263e593"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:51f06f35-3e12-4a40-9a85-f5f3b263e593"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3ff3a8c-0d78-4957-aa5d-e92b8fc8534e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13696"
+ ],
+ "x-ms-correlation-request-id": [
+ "c04390c8-37bd-467b-adde-20f5b0cc23d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:c04390c8-37bd-467b-adde-20f5b0cc23d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8647d3f0-dfaa-4d95-b1e8-44ba605d8270"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13695"
+ ],
+ "x-ms-correlation-request-id": [
+ "f084e359-049f-4181-b6a8-c58fdfbbaa15"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:f084e359-049f-4181-b6a8-c58fdfbbaa15"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff232981-f50b-4f88-aa61-5f61eb63652d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13694"
+ ],
+ "x-ms-correlation-request-id": [
+ "05ab4029-6b2b-4b46-8759-f6631e26cc84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:05ab4029-6b2b-4b46-8759-f6631e26cc84"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c81f919-c038-46f5-a3e5-bd488f02dcd5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13693"
+ ],
+ "x-ms-correlation-request-id": [
+ "466e0d06-0980-4efc-a973-702f866100bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:466e0d06-0980-4efc-a973-702f866100bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:56 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2913"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a961c8db-bdc1-4ee1-a7ac-efaefd2e03d2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13692"
+ ],
+ "x-ms-correlation-request-id": [
+ "71c5d319-83c5-4f8a-86ae-3e9d9af3f108"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:71c5d319-83c5-4f8a-86ae-3e9d9af3f108"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "08a24ee5-7776-465e-9a4a-5f73b6def8a0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13691"
+ ],
+ "x-ms-correlation-request-id": [
+ "a82e7994-0e2b-4bd7-b343-d66f581a9b99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:a82e7994-0e2b-4bd7-b343-d66f581a9b99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "253d10ab-da89-48ac-95e1-f23afda7746f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13690"
+ ],
+ "x-ms-correlation-request-id": [
+ "b884c3f4-f91f-4d23-a532-5c1c72a974b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:b884c3f4-f91f-4d23-a532-5c1c72a974b4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "ae1d0eca-4e5a-4feb-bc57-a7fc93109956"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13689"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e0900f1-ed23-4c89-b304-d22d6f0a1f32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:1e0900f1-ed23-4c89-b304-d22d6f0a1f32"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "340b1645-4376-4b8a-aca1-93a59cfc7245"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13688"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd67bb14-fc92-409d-8a91-9f8a80dbacc6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212457Z:bd67bb14-fc92-409d-8a91-9f8a80dbacc6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "a46060dd-f04f-4dc9-9507-4543a91582d8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13687"
+ ],
+ "x-ms-correlation-request-id": [
+ "59b06b5e-5a12-44e3-94e1-53b52f31527a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:59b06b5e-5a12-44e3-94e1-53b52f31527a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "4653f7d7-5b6e-4e07-ad2d-32c6588a95fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13686"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbc88940-cc31-46d7-8187-5c47696a201a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:bbc88940-cc31-46d7-8187-5c47696a201a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "a0d238a1-85ba-48d0-a549-c73ebe3f2c53"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13685"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a8218ba-0743-49f6-a525-d27c086104cb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:3a8218ba-0743-49f6-a525-d27c086104cb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "b6d2b971-bbe1-4940-91e7-1b140a3d8857"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13684"
+ ],
+ "x-ms-correlation-request-id": [
+ "dffc5e27-6d20-47be-9046-fe360633b5f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:dffc5e27-6d20-47be-9046-fe360633b5f9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "69f835d9-001e-44e9-99b6-9c244c711641"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13683"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fc8e08c-9798-4a5a-a783-b065bfac9f76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:3fc8e08c-9798-4a5a-a783-b065bfac9f76"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:57 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=",
+ "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\": \"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}",
+ "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": [
+ "1f76d83b-b45b-49dd-aeaf-ccf78650c58e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13682"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6f37071-abd6-447a-8f17-c6563fbe34de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:b6f37071-abd6-447a-8f17-c6563fbe34de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1143"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6f03cb59-112a-46a4-8c55-9b3b0d25dfd4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13681"
+ ],
+ "x-ms-correlation-request-id": [
+ "13a75b62-bbbd-49e3-9d4b-7b05ddbb6285"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:13a75b62-bbbd-49e3-9d4b-7b05ddbb6285"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb333d9a-3ff5-4cd1-9315-1054f8ac147d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13680"
+ ],
+ "x-ms-correlation-request-id": [
+ "e06b6788-0379-484c-9cd0-2091e6d368e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:e06b6788-0379-484c-9cd0-2091e6d368e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "665b5467-4cb8-49e4-9846-32334d10fe16"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13679"
+ ],
+ "x-ms-correlation-request-id": [
+ "051b8c14-f6d6-4d79-b2bc-ee044b80ac31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:051b8c14-f6d6-4d79-b2bc-ee044b80ac31"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27f2a239-c44d-4655-8657-ef86cbb55401"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13678"
+ ],
+ "x-ms-correlation-request-id": [
+ "73630c3c-f9e3-49c9-88de-4a3bf8245ace"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212458Z:73630c3c-f9e3-49c9-88de-4a3bf8245ace"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ef3e621c-94f9-4396-a145-9b17903f20a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13677"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a71c07d-c29d-4bb9-a9b6-0fdc7e76d655"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:9a71c07d-c29d-4bb9-a9b6-0fdc7e76d655"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f670827e-9513-477b-98f2-3dfc1dac524d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13676"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fbfd93a-0f22-41ac-adf6-fbb88a2d9bd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:9fbfd93a-0f22-41ac-adf6-fbb88a2d9bd3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e5506005-5542-4688-a63d-d68ae2f3b0ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13675"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c6fc4e7-b3e7-4c6c-8408-b2376447fdb5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:2c6fc4e7-b3e7-4c6c-8408-b2376447fdb5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "14e6e27a-c742-4f0c-a1e4-29d5369187ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13674"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e21e6b3-bad4-471d-b664-bae2e50a1a58"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:1e21e6b3-bad4-471d-b664-bae2e50a1a58"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:58 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3072"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "45e91738-6c1b-42e0-b066-1b299eeac4db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13673"
+ ],
+ "x-ms-correlation-request-id": [
+ "da22cee8-6f0a-420b-a311-72ac1084a7c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:da22cee8-6f0a-420b-a311-72ac1084a7c1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "549a70d4-25fe-4c5f-bac9-abf6e5271f75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13672"
+ ],
+ "x-ms-correlation-request-id": [
+ "154da9ab-7558-4f5f-b967-fbc0514abe28"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:154da9ab-7558-4f5f-b967-fbc0514abe28"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67614e1e-111b-476d-ba53-7a9eb28d82b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13671"
+ ],
+ "x-ms-correlation-request-id": [
+ "82561d01-d388-458c-b810-19251b995f07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:82561d01-d388-458c-b810-19251b995f07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "584f0104-7f09-4e2e-b0a1-a0401260bbe4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13670"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e85cf80-ab79-464d-b67a-2a32f1b0f123"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:3e85cf80-ab79-464d-b67a-2a32f1b0f123"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "434d116e-bbd1-46ac-9fe8-6576286a258c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13669"
+ ],
+ "x-ms-correlation-request-id": [
+ "81242040-2bfa-42b8-a05a-8ce99c13dcc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:81242040-2bfa-42b8-a05a-8ce99c13dcc0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a2df5c7-2012-4360-8c0a-bfebb72f4697"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13668"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1aaa260-5533-4180-941f-0403ce35b80c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212459Z:e1aaa260-5533-4180-941f-0403ce35b80c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04d2824c-4b3d-4ca6-b5dd-344644c11aae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13667"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9cf14db-5f75-43ab-b862-176c1e079650"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:e9cf14db-5f75-43ab-b862-176c1e079650"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bd571f95-fe55-4333-962c-3f37b9058916"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13666"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d24fceb-800a-4bd3-b5ea-1d5bc340d530"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:3d24fceb-800a-4bd3-b5ea-1d5bc340d530"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1799a9ac-d859-44d8-8f52-faad75c30a7e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13665"
+ ],
+ "x-ms-correlation-request-id": [
+ "942ecc4b-b521-4320-a9a9-594643ba88cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:942ecc4b-b521-4320-a9a9-594643ba88cf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0c9c813-af75-496c-aeaf-fea4873764a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13664"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7bc2b9a-1f07-41a2-83cd-18c1f40ac318"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:d7bc2b9a-1f07-41a2-83cd-18c1f40ac318"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6e65ebbc-798d-4d18-8ca7-cfde65b8ec78"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13663"
+ ],
+ "x-ms-correlation-request-id": [
+ "64c05d63-9a56-4894-9e8d-d271c9ccc5b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:64c05d63-9a56-4894-9e8d-d271c9ccc5b8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a26a5bd-02c0-4d20-b25b-20ee2c1d42f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13662"
+ ],
+ "x-ms-correlation-request-id": [
+ "faf061a7-aed3-407f-b5ad-2f1203da663a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:faf061a7-aed3-407f-b5ad-2f1203da663a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:24:59 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f48e033a-aeed-4ac2-bdd9-2c71fbb8969f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13661"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbc9480d-96a6-42b3-a4fd-dd61d8411bf0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:bbc9480d-96a6-42b3-a4fd-dd61d8411bf0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "74284634-03d0-4e76-a81a-55d26e211d14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13660"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa62e408-d242-47b0-b5de-de3b2fbe06b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:aa62e408-d242-47b0-b5de-de3b2fbe06b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "add4789d-5a41-45f3-ac13-67c7a8f3eda8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13659"
+ ],
+ "x-ms-correlation-request-id": [
+ "6181c163-91ea-4856-8ee8-5594d827e73f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:6181c163-91ea-4856-8ee8-5594d827e73f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2342e9d-265f-40db-92db-609b55d89d2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13658"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bc8cdf0-0169-4c6f-b7da-ba1b43b93140"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:0bc8cdf0-0169-4c6f-b7da-ba1b43b93140"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c142b5b-36e5-41a4-b80b-855162addf89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13657"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a17dea8-d1e9-4c56-8507-20612a39e496"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212500Z:5a17dea8-d1e9-4c56-8507-20612a39e496"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95f07fd0-0351-4aea-82fb-54aab5b532f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13656"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a8e77d1-836c-4c0a-8b3f-a53e72e1790f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:4a8e77d1-836c-4c0a-8b3f-a53e72e1790f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ea19407e-c600-4344-aacb-bae279e07eb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13655"
+ ],
+ "x-ms-correlation-request-id": [
+ "992f4fea-0af6-41ce-b8c0-6540a4966135"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:992f4fea-0af6-41ce-b8c0-6540a4966135"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4970be2-350f-4350-85ad-c073605a0d68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13654"
+ ],
+ "x-ms-correlation-request-id": [
+ "8afaf5e1-e6f8-49bc-81b7-916bc2fb78a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:8afaf5e1-e6f8-49bc-81b7-916bc2fb78a9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ef7dad63-e825-4131-bd81-d28fbbc65593"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13653"
+ ],
+ "x-ms-correlation-request-id": [
+ "3527ce28-067b-43ec-a0dc-0e5642d47541"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:3527ce28-067b-43ec-a0dc-0e5642d47541"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64d03f3a-833b-410e-9494-26620d83867d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13652"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1fc95a6-624a-4583-979c-e9c95540a31a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:e1fc95a6-624a-4583-979c-e9c95540a31a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:00 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "529e38cb-aadd-4908-8822-e6391bf3e338"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13651"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d8ef09f-f16e-4e33-83d9-56f1ae55112b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:3d8ef09f-f16e-4e33-83d9-56f1ae55112b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6583503d-f795-44c1-ac1a-cd4377af11d0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13650"
+ ],
+ "x-ms-correlation-request-id": [
+ "31426a93-0c4c-41eb-bc40-dfa47d5384c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:31426a93-0c4c-41eb-bc40-dfa47d5384c0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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==",
+ "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\": \"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]",
+ "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": [
+ "f9278683-c3f9-4af1-945d-ec9326313b06"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13649"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbd086e7-29fd-4e2d-b47c-f7819bcb2636"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:fbd086e7-29fd-4e2d-b47c-f7819bcb2636"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "381"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e959afcb-8c03-4171-b5ff-8cf4ef1faf87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13648"
+ ],
+ "x-ms-correlation-request-id": [
+ "160dc15a-a796-4c28-8dcb-76b349b3db2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212501Z:160dc15a-a796-4c28-8dcb-76b349b3db2b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "573"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe0ba56f-03a9-4662-9480-65ace6fa2a5c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13647"
+ ],
+ "x-ms-correlation-request-id": [
+ "78d40463-da91-4b5f-8435-7018b507742b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:78d40463-da91-4b5f-8435-7018b507742b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b17d0bed-668a-4381-a84a-bf2fe5778526"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13646"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2897755-e243-4459-8b36-b3a3a3af7024"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:d2897755-e243-4459-8b36-b3a3a3af7024"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "518f9da8-46bc-43b4-8f1e-141abe46527e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13645"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7a1404c-b0f8-47cb-9d46-8a77ea6ed4ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:f7a1404c-b0f8-47cb-9d46-8a77ea6ed4ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2853"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7d27379-e962-4648-9039-7c8a58c14b67"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13644"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2220905-a59c-4f80-8bc5-b6342ba45a93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:b2220905-a59c-4f80-8bc5-b6342ba45a93"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "58850baf-5989-4cbb-a2e5-2986b514b0a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13643"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea807be8-2554-425a-9e6e-8e69d2151c99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:ea807be8-2554-425a-9e6e-8e69d2151c99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44d7909d-ccd4-4300-bd68-80aa9799ffa2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13642"
+ ],
+ "x-ms-correlation-request-id": [
+ "98bedad3-abdf-49bc-a29c-8b2cf37edf3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:98bedad3-abdf-49bc-a29c-8b2cf37edf3c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fcfa48fc-382b-4a2a-af86-5ea03688a0f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13641"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3026f7a-3516-413c-8783-13e3217bd6ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:f3026f7a-3516-413c-8783-13e3217bd6ee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c86daeb-c595-4207-aa0b-bbde8cebe363"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13640"
+ ],
+ "x-ms-correlation-request-id": [
+ "413faa3f-0b61-4968-afdc-422aa6fee43b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:413faa3f-0b61-4968-afdc-422aa6fee43b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b237f3b4-1af8-42cc-b004-cb54cac338c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13639"
+ ],
+ "x-ms-correlation-request-id": [
+ "90f5f9d2-45ad-4a1f-9d6b-6b2aaf2e1ffc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:90f5f9d2-45ad-4a1f-9d6b-6b2aaf2e1ffc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92c48294-4f04-4c76-b9b3-4d9a09a520c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13638"
+ ],
+ "x-ms-correlation-request-id": [
+ "b084a075-75ad-4b0e-b63f-a251055b63d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:b084a075-75ad-4b0e-b63f-a251055b63d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19374239-9df1-4cbc-9e3f-c2f3d1311124"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13637"
+ ],
+ "x-ms-correlation-request-id": [
+ "c47a4642-00a8-4627-b300-82a028c73937"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212502Z:c47a4642-00a8-4627-b300-82a028c73937"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "06996c67-9ad1-4b55-a2b3-90bb9483ab1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13636"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e6e2cf5-b4c4-4978-b41e-afbc7c763659"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:0e6e2cf5-b4c4-4978-b41e-afbc7c763659"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "06802417-60d2-41ed-ba8b-7e7dd5eaa75a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13635"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba34a266-7991-49ff-884e-a60f57e3c5fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:ba34a266-7991-49ff-884e-a60f57e3c5fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ac48a2df-6716-4337-8a74-98161a335698"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13634"
+ ],
+ "x-ms-correlation-request-id": [
+ "edd3f408-4daf-4d58-8ab4-13782cf574b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:edd3f408-4daf-4d58-8ab4-13782cf574b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "73ae97ac-68f3-40b2-a3d0-86113487b714"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13633"
+ ],
+ "x-ms-correlation-request-id": [
+ "c15a43d9-1666-4d12-baf8-51aa27f0dd70"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:c15a43d9-1666-4d12-baf8-51aa27f0dd70"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c8bebc32-5873-4230-8420-da7841b44c9b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13632"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea85ef58-154e-4c62-9b43-1e5351ff1779"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:ea85ef58-154e-4c62-9b43-1e5351ff1779"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98d129af-233f-4498-bc31-77f5fb5d80b4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13631"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d1a4259-a8c1-4dfe-ae86-4c36c12bb444"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:5d1a4259-a8c1-4dfe-ae86-4c36c12bb444"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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==",
+ "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/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": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c41da6c-b64b-4293-9534-2e6dcffbe500"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13630"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ca61b6f-5a36-4e4c-8f3b-3af961fcfa6b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:5ca61b6f-5a36-4e4c-8f3b-3af961fcfa6b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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==",
+ "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\": \"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}",
+ "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": [
+ "d3f7160d-396c-4a59-a7ce-96bc2661b127"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13629"
+ ],
+ "x-ms-correlation-request-id": [
+ "b54bc7cf-e6b0-4293-8803-c4b460bdaa51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212503Z:b54bc7cf-e6b0-4293-8803-c4b460bdaa51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c5c228c-c73e-428d-b545-2e9c92a64550"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13628"
+ ],
+ "x-ms-correlation-request-id": [
+ "97cb93a6-86a2-4f81-b408-bb7feeef7dab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:97cb93a6-86a2-4f81-b408-bb7feeef7dab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27e8ebfc-e2ff-485b-9322-ec303951c4bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13627"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e02d95b-b2bc-409f-8d22-89968ce4bfd6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:7e02d95b-b2bc-409f-8d22-89968ce4bfd6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a68e1bd1-0ef4-42b7-8168-6227bf031566"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13626"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b6b0a58-2102-400b-82c3-97d2586d9c47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:2b6b0a58-2102-400b-82c3-97d2586d9c47"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "460"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7fd6f861-5d56-4f65-bf2e-5b76bd83b8d7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13625"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7063457-69a7-4c8a-9b98-75fbc1c247ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:c7063457-69a7-4c8a-9b98-75fbc1c247ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aaa4b1c1-7726-423b-a6a8-0ec0c80f8f64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13624"
+ ],
+ "x-ms-correlation-request-id": [
+ "e872d04d-7328-42cd-806e-517c2ee37cfd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:e872d04d-7328-42cd-806e-517c2ee37cfd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65ea1706-9546-4238-afdf-6dd1c86f89f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13623"
+ ],
+ "x-ms-correlation-request-id": [
+ "d065f134-7134-4ddb-9b6c-b1b68ffbb11e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:d065f134-7134-4ddb-9b6c-b1b68ffbb11e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "241e40fb-f63f-4fec-b7b0-2b35cc541057"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13622"
+ ],
+ "x-ms-correlation-request-id": [
+ "228ec685-8505-4b25-ada6-d1d72994fd23"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:228ec685-8505-4b25-ada6-d1d72994fd23"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aa32a657-5f05-4666-ad7e-42d3764ac6ba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13621"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9d639c0-6649-4914-b366-dd0a12e7316c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212504Z:f9d639c0-6649-4914-b366-dd0a12e7316c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "75f59fd0-a1f2-4324-a22f-2a03d1af0f8f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13620"
+ ],
+ "x-ms-correlation-request-id": [
+ "aef627b7-94b5-4b79-adc7-4c9776c81495"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:aef627b7-94b5-4b79-adc7-4c9776c81495"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0da41dda-e1c0-4279-a807-ed5ca0dd07dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13619"
+ ],
+ "x-ms-correlation-request-id": [
+ "82d830b7-882e-439b-b8f4-38090f55d32d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:82d830b7-882e-439b-b8f4-38090f55d32d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "158872f2-76ee-48fa-96a1-625217bc3a73"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13618"
+ ],
+ "x-ms-correlation-request-id": [
+ "a05778a8-75d1-494b-83ee-d41f589ef065"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:a05778a8-75d1-494b-83ee-d41f589ef065"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "315"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78123eb7-f30d-482d-aa03-9d5b65966b90"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13617"
+ ],
+ "x-ms-correlation-request-id": [
+ "688ced70-3f50-42a0-b3ef-2fddf1c8f987"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:688ced70-3f50-42a0-b3ef-2fddf1c8f987"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4df7e4c7-f49e-4fa1-9e9a-6189b6dcf919"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13616"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b66319b-e755-4edc-8bc7-ccbcab6e7d10"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:4b66319b-e755-4edc-8bc7-ccbcab6e7d10"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:04 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "568"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5cf179c7-0117-412d-acc3-e1a15061718f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13615"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdc0dd79-c03a-4bf3-860a-1c0b6f3fe99a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:bdc0dd79-c03a-4bf3-860a-1c0b6f3fe99a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3faa3998-8297-4805-939e-c79917d20c6f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13614"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f1ef474-c0ed-455a-bdc9-5f6528290c21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:7f1ef474-c0ed-455a-bdc9-5f6528290c21"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f26386c1-90b7-4804-adce-9ee13124c704"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13613"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5125736-c678-4c7b-b791-3897dbfa359c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212505Z:f5125736-c678-4c7b-b791-3897dbfa359c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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==",
+ "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/chef-software/ArtifactTypes/VMImage/Offers/chef-server/Skus/chefbyol/Versions/1.0.0\"\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": [
+ "ad5c559d-29be-42fe-9a4b-5525e9ae9f1e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13612"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9001f34-9a9c-4602-bb11-37b494714b0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:b9001f34-9a9c-4602-bb11-37b494714b0d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c5d71055-febe-4493-8890-5d3b963ccead"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13611"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf930831-8704-4f2f-8742-315b25704ae8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:cf930831-8704-4f2f-8742-315b25704ae8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "a89f1ef3-d02e-4fc7-a2bb-0ddfba1f8b1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13610"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bff575a-6d2c-4a1d-8073-b7a8c1e3cee4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:5bff575a-6d2c-4a1d-8073-b7a8c1e3cee4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a8458cd-5c38-4279-a881-133727158abc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13609"
+ ],
+ "x-ms-correlation-request-id": [
+ "fee5a8b8-58c2-44d7-a67c-4708694699c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:fee5a8b8-58c2-44d7-a67c-4708694699c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "573"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e3b74cc-531e-495c-9adc-c0235c0eac89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13608"
+ ],
+ "x-ms-correlation-request-id": [
+ "137abe3f-3ed6-4739-b757-e968362c7bbb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:137abe3f-3ed6-4739-b757-e968362c7bbb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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/circleci/ArtifactTypes/VMImage/Offers/circleci-enterprise/Skus/circleci-builder-base/Versions/1.0.0\"\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": [
+ "f16eedf6-8d1c-4e49-94a6-f70e494f96d2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13607"
+ ],
+ "x-ms-correlation-request-id": [
+ "89f5d0d4-2812-46de-9815-92e9d5c83ccf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:89f5d0d4-2812-46de-9815-92e9d5c83ccf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ea7ec27-6238-4f19-8445-b8dbd0acd1d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13606"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3dc79b4-1442-4f4c-8d83-782a5a2fda99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212506Z:b3dc79b4-1442-4f4c-8d83-782a5a2fda99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c308623a-2765-4b3c-9474-257f24ae81c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13605"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cdb9ff4-452c-4ea5-b42d-a34f11bc0519"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:8cdb9ff4-452c-4ea5-b42d-a34f11bc0519"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec6a51cd-0585-4a8e-a637-015360aab49a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13604"
+ ],
+ "x-ms-correlation-request-id": [
+ "c58c45e9-d809-487c-a452-185437c47532"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:c58c45e9-d809-487c-a452-185437c47532"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "233"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b8cf6afd-c0df-4c05-8039-85fe5052ab6b"
+ ],
+ "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": [
+ "57f7578d-f130-4220-94b8-558fba46a8fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:57f7578d-f130-4220-94b8-558fba46a8fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c581ad8f-41c8-43ff-945f-b849af8f95e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13602"
+ ],
+ "x-ms-correlation-request-id": [
+ "1124a285-5e96-49a5-90ac-5b27cff0cec3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:1124a285-5e96-49a5-90ac-5b27cff0cec3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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",
+ "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.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]",
+ "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": [
+ "3df63c68-df0e-4ccb-82e7-3e130153065b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13601"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cafe8a8-a044-4c1b-9537-6af724720f6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:7cafe8a8-a044-4c1b-9537-6af724720f6c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1c48be95-3112-4567-bc36-f0e100e85258"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13600"
+ ],
+ "x-ms-correlation-request-id": [
+ "558f173f-083d-4d49-ab01-c4384bca40bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:558f173f-083d-4d49-ab01-c4384bca40bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:06 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "34aa99c7-1e2d-4f70-85a1-ec2112d176c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13599"
+ ],
+ "x-ms-correlation-request-id": [
+ "da91d62d-e773-41eb-acd2-12f002f23531"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:da91d62d-e773-41eb-acd2-12f002f23531"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6cb28a5-b80f-409e-bb20-2c2cd27e0e93"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13598"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6da3b59-d6f7-4b1e-89e7-e2098808e18f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212507Z:e6da3b59-d6f7-4b1e-89e7-e2098808e18f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a1b0434-7137-411c-b32f-78e2aa17d8df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13597"
+ ],
+ "x-ms-correlation-request-id": [
+ "30200832-855e-416b-bcd8-c78a0a4c7ab2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:30200832-855e-416b-bcd8-c78a0a4c7ab2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "526"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "723559fa-04d5-42bb-9d2e-c5f369339819"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13596"
+ ],
+ "x-ms-correlation-request-id": [
+ "253f9f84-d16c-4bb5-9c4d-33ac6751fc39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:253f9f84-d16c-4bb5-9c4d-33ac6751fc39"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "599"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ad4daf5d-8282-4926-90d5-10c325c1c2a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13595"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b4dde9b-21d9-4842-baa7-d2d5493153dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:9b4dde9b-21d9-4842-baa7-d2d5493153dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "340"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "87f99555-b284-4a3c-a9a3-c1716e1df01e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13594"
+ ],
+ "x-ms-correlation-request-id": [
+ "1eb1c374-1a8f-45f8-a46f-ee7159283f1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:1eb1c374-1a8f-45f8-a46f-ee7159283f1a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "338"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c17135af-4639-4b69-bce7-1659beab9d21"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13593"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f22baff-f6d0-4760-87e8-554cb3090970"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:7f22baff-f6d0-4760-87e8-554cb3090970"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "614"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2f866b09-c980-4cb1-8779-710c1e7c4a4b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13592"
+ ],
+ "x-ms-correlation-request-id": [
+ "e51cec4d-e740-4f98-9fef-09fa64a43e65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:e51cec4d-e740-4f98-9fef-09fa64a43e65"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "361"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "55d0e2c9-d5b0-4891-878a-7cfbe6a04d14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13591"
+ ],
+ "x-ms-correlation-request-id": [
+ "63e28ccb-8ced-4ada-b547-6b437839d62b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:63e28ccb-8ced-4ada-b547-6b437839d62b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "352"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "113abee9-b4ba-4cb7-9316-11a9565709fb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13590"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5521597-884a-46cc-8a56-aa61dfca0baa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212508Z:c5521597-884a-46cc-8a56-aa61dfca0baa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "642"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "46401556-3546-4de7-8450-b761e0162c67"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13589"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e1ef9ea-3303-496a-8682-5ec2a8f639ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:8e1ef9ea-3303-496a-8682-5ec2a8f639ed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5504e0bf-efa2-41b9-885a-b0075b6a3e2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13588"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ac94fa4-e4ab-4563-8ab7-83dd992fee16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:5ac94fa4-e4ab-4563-8ab7-83dd992fee16"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba3ed191-236e-4c95-83b4-3f1723c0dd3f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13587"
+ ],
+ "x-ms-correlation-request-id": [
+ "7824cf26-7dc9-47d9-8f53-d1619589ea75"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:7824cf26-7dc9-47d9-8f53-d1619589ea75"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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/cloudboost/ArtifactTypes/VMImage/Offers/cloudboost/Skus/cloudboost-enterprise/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "49abbe6a-fca5-4d82-8b32-9b67e67d47c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13586"
+ ],
+ "x-ms-correlation-request-id": [
+ "2071d110-7ed9-4051-bdba-084191d357c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:2071d110-7ed9-4051-bdba-084191d357c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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\": \"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}",
+ "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": [
+ "b3b48726-e0c3-40c9-971f-18cd399738e1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13585"
+ ],
+ "x-ms-correlation-request-id": [
+ "de528332-654b-45f5-b804-8342d67f1c2c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:de528332-654b-45f5-b804-8342d67f1c2c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "69437102-a860-4535-832c-7e356d7544b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13584"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf0030b8-45ec-4830-aef2-e3e973e327b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:cf0030b8-45ec-4830-aef2-e3e973e327b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:08 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "197edaf0-ae2f-4de3-85fe-39b0639139b3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13583"
+ ],
+ "x-ms-correlation-request-id": [
+ "d37276df-b682-43d1-91c1-a28ea13486f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:d37276df-b682-43d1-91c1-a28ea13486f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "589237e2-c7ea-4a8c-b781-6441be58d0b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13582"
+ ],
+ "x-ms-correlation-request-id": [
+ "75651afb-d47f-4fab-baa9-e8c4db54eb93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212509Z:75651afb-d47f-4fab-baa9-e8c4db54eb93"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "484c5c57-032e-4e4b-934c-aa320dff3dc3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13581"
+ ],
+ "x-ms-correlation-request-id": [
+ "551f4adc-7b18-466e-b5ad-d569277bff3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:551f4adc-7b18-466e-b5ad-d569277bff3a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b8f6d638-3716-4d1d-af77-221770c60ace"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13580"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4d3daef-3d5e-446a-a851-930135215744"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:c4d3daef-3d5e-446a-a851-930135215744"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "27510544-3644-4068-9cca-1e68b4e60080"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13579"
+ ],
+ "x-ms-correlation-request-id": [
+ "15ae3c4c-a3b0-404e-a79e-ab00f048126d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:15ae3c4c-a3b0-404e-a79e-ab00f048126d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "6bceb72b-2b37-467b-8fae-5e6ede8be11f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13578"
+ ],
+ "x-ms-correlation-request-id": [
+ "0345764e-01cf-462c-bd3d-d596b2ba48c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:0345764e-01cf-462c-bd3d-d596b2ba48c2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "d8b981ca-85b6-42dc-bcb7-e75f543a97d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13577"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f78c4ec-2e51-4365-9856-729908c6bd17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:0f78c4ec-2e51-4365-9856-729908c6bd17"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63d933ed-f7a0-4d0a-be33-43a1f2bb6588"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13576"
+ ],
+ "x-ms-correlation-request-id": [
+ "18bfbc38-5215-463d-975c-1883b2dbbfd1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:18bfbc38-5215-463d-975c-1883b2dbbfd1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:09 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==",
+ "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\": \"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]",
+ "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": [
+ "cb3eafa0-82e0-46a9-82b3-988ef3c7396a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13575"
+ ],
+ "x-ms-correlation-request-id": [
+ "23b4b1a6-482c-44b5-8b95-c2648708e789"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:23b4b1a6-482c-44b5-8b95-c2648708e789"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9a6f741-1d7d-483f-afae-03fccdfde329"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13574"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e82836f-0b46-44d2-9bad-5a63893312e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212510Z:1e82836f-0b46-44d2-9bad-5a63893312e0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "532"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72ee2073-4a66-4f6f-92ea-c6b0ce9e69db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13573"
+ ],
+ "x-ms-correlation-request-id": [
+ "95aedfc2-445f-4b27-b9a2-cae43ba174bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:95aedfc2-445f-4b27-b9a2-cae43ba174bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c6d608da-e0c4-4187-9019-c3258fd65baf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13572"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2ff2c44-60e8-4bf2-ba4d-ad05361544ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:c2ff2c44-60e8-4bf2-ba4d-ad05361544ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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",
+ "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\": \"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]",
+ "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": [
+ "662ace18-ddb8-4afc-b0a4-6a07202e9086"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13571"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0fc5225-a8e6-4224-8e8f-6810fa78afb1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:d0fc5225-a8e6-4224-8e8f-6810fa78afb1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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",
+ "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/codelathe/ArtifactTypes/VMImage/Offers/codelathe-filecloud-win2012r2/Skus/filecloud_byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "733b0433-9996-490b-b4b5-665c156cfaaf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13570"
+ ],
+ "x-ms-correlation-request-id": [
+ "49cc26a6-b2cb-4764-9182-944905f0c497"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:49cc26a6-b2cb-4764-9182-944905f0c497"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "53506d05-61e1-468d-b009-79135b55a5f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13569"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1d24b2a-cc4f-4904-abd8-4c26de245c1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:c1d24b2a-cc4f-4904-abd8-4c26de245c1e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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",
+ "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\": \"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]",
+ "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": [
+ "fc84f1eb-86e3-461e-b1be-7f485769f583"
+ ],
+ "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": [
+ "d62bb339-0849-4a26-b067-1da151575a12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:d62bb339-0849-4a26-b067-1da151575a12"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:10 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "567"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3069104-022e-4fdb-88c9-d57df059dea4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13567"
+ ],
+ "x-ms-correlation-request-id": [
+ "567ebf99-0278-41d2-ae5b-4f4ad35d9532"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:567ebf99-0278-41d2-ae5b-4f4ad35d9532"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93fb8190-92e4-4011-9a47-0aa83b78e7da"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13566"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cc299cf-8c40-43dd-8dc5-a09bab1be25e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212511Z:6cc299cf-8c40-43dd-8dc5-a09bab1be25e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d673b574-5d1f-4047-9d2f-e373a5a36c14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13565"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff73c834-a2c4-47fe-82c1-e18c5bc3408b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:ff73c834-a2c4-47fe-82c1-e18c5bc3408b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "86528d0f-6ac2-446d-9a18-87a9279ae4b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13564"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b8ec13b-df37-41a2-b2ea-3ba23f326824"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:3b8ec13b-df37-41a2-b2ea-3ba23f326824"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b57b835d-237f-4729-a5f6-4b2f2516cf08"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13563"
+ ],
+ "x-ms-correlation-request-id": [
+ "2aaec32c-81b0-4cf9-bcb9-ea98b74b6285"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:2aaec32c-81b0-4cf9-bcb9-ea98b74b6285"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8baed4b3-3229-451e-9132-d5efd7793cb0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13562"
+ ],
+ "x-ms-correlation-request-id": [
+ "23349648-9f9a-44d8-9cdb-dfa85714715d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:23349648-9f9a-44d8-9cdb-dfa85714715d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e5e377a-45e0-4445-a2fa-f4838beded1b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13561"
+ ],
+ "x-ms-correlation-request-id": [
+ "2496fda1-c77d-4b9c-88ff-b1bd36f90742"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:2496fda1-c77d-4b9c-88ff-b1bd36f90742"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00e869f9-6c98-4106-bd31-d4970eea3519"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13560"
+ ],
+ "x-ms-correlation-request-id": [
+ "084e4be3-ef56-4d6d-bc80-021e81f3e2bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:084e4be3-ef56-4d6d-bc80-021e81f3e2bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:11 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33164d19-4bcb-4684-a091-dcf7ec46305d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13559"
+ ],
+ "x-ms-correlation-request-id": [
+ "75a85ed8-5481-410b-8430-0dbd2b600ccc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:75a85ed8-5481-410b-8430-0dbd2b600ccc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f3e44837-1a41-4d0f-bf86-0882848da919"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13558"
+ ],
+ "x-ms-correlation-request-id": [
+ "8881df03-4b9e-4167-b97c-fb1e999ab13b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212512Z:8881df03-4b9e-4167-b97c-fb1e999ab13b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "3cc598b7-f9d6-4eb3-813b-3b546d275524"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13557"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0465bbd-20bd-4186-96bf-724280b01152"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:e0465bbd-20bd-4186-96bf-724280b01152"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "230"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "915505d5-0d38-4b75-9d2b-b57e7bb8f0ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13556"
+ ],
+ "x-ms-correlation-request-id": [
+ "54b89764-a661-44bb-a429-65f752697c9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:54b89764-a661-44bb-a429-65f752697c9a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a957689f-d217-47f4-a2b9-30788ae56343"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13555"
+ ],
+ "x-ms-correlation-request-id": [
+ "c63e14f0-e9d4-4d29-9ae8-a7abc6cd6f96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:c63e14f0-e9d4-4d29-9ae8-a7abc6cd6f96"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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==",
+ "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/cordis/ArtifactTypes/VMImage/Offers/myfidoc/Skus/myfidoc/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "161197d2-c9dc-4074-ae5d-c143c11ffa97"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13554"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f967cd9-eb2f-425e-bdc9-68c1ca0b2576"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:4f967cd9-eb2f-425e-bdc9-68c1ca0b2576"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "580"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c45ea51-ceb2-4d39-9671-8a0685c2de05"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13553"
+ ],
+ "x-ms-correlation-request-id": [
+ "93cdf44b-e455-4527-80c5-53effc16ff90"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:93cdf44b-e455-4527-80c5-53effc16ff90"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "668e0cb8-db2c-43fb-be9a-8c2167a5e5c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13552"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfc29bde-bec8-49be-a251-e51037740da1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:cfc29bde-bec8-49be-a251-e51037740da1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "311"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a580777f-0e0b-4615-91ec-a287115061b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13551"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7ec4e48-211f-4f5c-ad1e-986516a7361d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:f7ec4e48-211f-4f5c-ad1e-986516a7361d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:12 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "310"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a208d84-f4af-4ffe-b6ec-6eb940c2bfe5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13550"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f768558-2a6e-47d2-a182-ada28ba0c692"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:0f768558-2a6e-47d2-a182-ada28ba0c692"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "570"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00f1616f-e113-4df7-91ec-5e20453ee4de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13549"
+ ],
+ "x-ms-correlation-request-id": [
+ "b55da978-3389-4d1b-9547-fac2a319e8ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212513Z:b55da978-3389-4d1b-9547-fac2a319e8ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "228"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a391148-b842-4661-9333-452455752e7a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13548"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8854698-8ab7-4088-877a-3494ed7b4c63"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:d8854698-8ab7-4088-877a-3494ed7b4c63"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "708"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b7c9bb2b-55be-433f-b0dd-24076ee16678"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13547"
+ ],
+ "x-ms-correlation-request-id": [
+ "238cbb7f-03ad-4ef3-9785-951c95835a11"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:238cbb7f-03ad-4ef3-9785-951c95835a11"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "10163"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4408ae74-792a-487a-8405-a3d606049022"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13546"
+ ],
+ "x-ms-correlation-request-id": [
+ "99379ffe-4dca-4d80-ab1e-03e40bbc97d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:99379ffe-4dca-4d80-ab1e-03e40bbc97d1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a580d2ad-6046-478f-b368-1e65fe0dbd3f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13545"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9f51e89-f778-4057-a7e4-d5c4ac4e3f6a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:f9f51e89-f778-4057-a7e4-d5c4ac4e3f6a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "952c747e-2668-4832-b3cb-056011b4d2d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13544"
+ ],
+ "x-ms-correlation-request-id": [
+ "349a0569-e50d-49c8-87e0-571cdae83b64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:349a0569-e50d-49c8-87e0-571cdae83b64"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b40eec8-b0c4-4bf5-b4e0-4ae6ebb92520"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13543"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5bdf8c2-e8cf-4eff-ad28-3a0002b73436"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:a5bdf8c2-e8cf-4eff-ad28-3a0002b73436"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "627b9efb-6161-4862-b657-197512025d1e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13542"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5018507-c427-4eb0-a762-8e43ef3889ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:b5018507-c427-4eb0-a762-8e43ef3889ea"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0cceab4-83cf-487d-a9a1-7e464a1e3646"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13541"
+ ],
+ "x-ms-correlation-request-id": [
+ "4563c2f6-181b-4cb0-8a83-3d313e45f1fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:4563c2f6-181b-4cb0-8a83-3d313e45f1fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8b93590-ab52-49a8-95b7-c7eb856dc62e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13540"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a5ba281-98ba-4e76-93c0-1e4261dc6e51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:0a5ba281-98ba-4e76-93c0-1e4261dc6e51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3408977f-5ce5-4e20-a900-d8d247a1a987"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13539"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc4dda20-9643-40ff-96df-14fe25f6b7e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212514Z:dc4dda20-9643-40ff-96df-14fe25f6b7e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1400f173-fd5a-4c1b-b6d5-7f0321db262a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13538"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1bdb4d0-56ae-49b1-9b5f-de2b429cd2ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:b1bdb4d0-56ae-49b1-9b5f-de2b429cd2ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9cb48ebe-cf15-45c8-95a2-8bd31f4dfb93"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13537"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff9532b9-702c-4c78-987f-274ec0567df8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:ff9532b9-702c-4c78-987f-274ec0567df8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d00d1561-b8d7-4559-8361-3f07b9a7e828"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13536"
+ ],
+ "x-ms-correlation-request-id": [
+ "86eb5cbe-638f-44ad-b10e-3c86b533a1f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:86eb5cbe-638f-44ad-b10e-3c86b533a1f2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4ebf6ed-00ca-4a62-bcd7-844762aa79a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13535"
+ ],
+ "x-ms-correlation-request-id": [
+ "8cc76d11-ef8a-4f11-9aa1-65d0143c2f4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:8cc76d11-ef8a-4f11-9aa1-65d0143c2f4c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b7c9bc2b-06f8-40ac-9a81-81d2c478710d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13534"
+ ],
+ "x-ms-correlation-request-id": [
+ "d904b85c-9a73-401d-918c-e9e4adb66ec0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:d904b85c-9a73-401d-918c-e9e4adb66ec0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e7286e5-53b6-44e3-b320-041175c65073"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13533"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5ab05bd-12e2-4b16-9115-b8af96e3e0f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:e5ab05bd-12e2-4b16-9115-b8af96e3e0f2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2b442a44-ab05-47fd-b519-3bfdadd6eb2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13532"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdf285ba-a9f1-447b-8f3f-b8917b4f93f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:cdf285ba-a9f1-447b-8f3f-b8917b4f93f6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d000d6f-d63b-48be-876e-84c43e9329eb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13531"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b139a37-33fb-412b-a94c-c1b7f191f764"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:3b139a37-33fb-412b-a94c-c1b7f191f764"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4a9284c5-c7ec-4ae0-96f4-c982514dc086"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13530"
+ ],
+ "x-ms-correlation-request-id": [
+ "5aa33b88-2d6b-478f-a56c-7147ba8821b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:5aa33b88-2d6b-478f-a56c-7147ba8821b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44660482-2198-49f0-a3e7-09e1798b60bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13529"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd7b0a0f-d773-42d0-a65e-a7356bbf07c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212515Z:bd7b0a0f-d773-42d0-a65e-a7356bbf07c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7ddac4a3-7354-494e-87ec-1fde40f1ad46"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13528"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac5d147c-74cf-4905-877e-8349d01ff661"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:ac5d147c-74cf-4905-877e-8349d01ff661"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f5365b4-8fe5-4499-8683-c49047da563f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13527"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d5dda00-7c0c-4971-9e74-d4616444c498"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:9d5dda00-7c0c-4971-9e74-d4616444c498"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3ad47c7-cbd3-46d1-8fd2-64e2bbeda5a4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13526"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e0c027b-6ae1-4d81-a96c-df46e8e947b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:1e0c027b-6ae1-4d81-a96c-df46e8e947b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3cc33d6f-35d4-4172-91e4-1e55b9adf129"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13525"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffccf124-dff0-412b-af79-c8f3e23f0804"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:ffccf124-dff0-412b-af79-c8f3e23f0804"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f83d4d06-bdf1-4221-a18a-0a099aefb8f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13524"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb2590fb-4191-4446-88cc-bd75e7911d5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:cb2590fb-4191-4446-88cc-bd75e7911d5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7a82894-25e0-4fd9-b6e8-dc4c003671df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13523"
+ ],
+ "x-ms-correlation-request-id": [
+ "c97a11e3-061c-418b-807f-4f5b15a1b24c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:c97a11e3-061c-418b-807f-4f5b15a1b24c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "865a3974-9fbc-44aa-8b76-c24e69390038"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13522"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a9b6ef2-7d08-47fb-8ea0-cd91ce8741a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:4a9b6ef2-7d08-47fb-8ea0-cd91ce8741a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c10ad859-558f-4886-871c-d1c1a229739d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13521"
+ ],
+ "x-ms-correlation-request-id": [
+ "df73b582-b807-4691-87e3-6c8d4b83408c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:df73b582-b807-4691-87e3-6c8d4b83408c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6bb1f29b-63cc-40aa-acac-ac207947903d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13520"
+ ],
+ "x-ms-correlation-request-id": [
+ "877f187e-9e48-4ce4-a717-33807961c5c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:877f187e-9e48-4ce4-a717-33807961c5c6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "60738ad1-d6c7-42e8-bcd5-51b143449617"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13519"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8e541b0-649b-4a68-9800-7771b9bd4cd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212516Z:c8e541b0-649b-4a68-9800-7771b9bd4cd3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ddda0711-b307-497a-af2a-95a22d733af0"
+ ],
+ "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": [
+ "d0aab2c6-a122-4bf9-a7cf-6ea987f2af0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:d0aab2c6-a122-4bf9-a7cf-6ea987f2af0c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4a872d10-722f-4129-9eb4-ca844f96fb72"
+ ],
+ "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": [
+ "dc34b473-fcc4-4f08-a2c7-3d269d012781"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:dc34b473-fcc4-4f08-a2c7-3d269d012781"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35345507-5820-4be3-8ab5-8e10a127a264"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13516"
+ ],
+ "x-ms-correlation-request-id": [
+ "25d39212-67d0-479a-a080-02d2c45f38bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:25d39212-67d0-479a-a080-02d2c45f38bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bd920d2a-d669-40e3-86af-dd1888f4dbb1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13515"
+ ],
+ "x-ms-correlation-request-id": [
+ "9869bd43-a8ae-4095-a1a0-421070bcef91"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:9869bd43-a8ae-4095-a1a0-421070bcef91"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2eaf9fe7-f5ee-4e9c-b64e-71d6dd3ffbfa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13514"
+ ],
+ "x-ms-correlation-request-id": [
+ "766b2a10-bf2c-48ac-957f-2129c98a3244"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:766b2a10-bf2c-48ac-957f-2129c98a3244"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "884ba137-d4f3-4cff-81bc-0bf118226876"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13513"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9f8e4bc-1c81-44a1-a860-e4a8a8dcd102"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:b9f8e4bc-1c81-44a1-a860-e4a8a8dcd102"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b30a873-a0ac-4213-9513-df233d3b1967"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13512"
+ ],
+ "x-ms-correlation-request-id": [
+ "41c4a067-d470-4e2b-adca-df4560483d55"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:41c4a067-d470-4e2b-adca-df4560483d55"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dfcae99c-23c7-436f-8880-204fbeb9bfaf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13511"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f60721c-18d5-421d-bd2b-9ec71c667509"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:6f60721c-18d5-421d-bd2b-9ec71c667509"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "15d833d8-92df-4426-8751-c6a15f583df9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13510"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e962d0e-cc7b-4034-8e59-100c726164d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:3e962d0e-cc7b-4034-8e59-100c726164d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae9cd13a-7a4e-4139-a9f8-b1e1b230bf35"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13509"
+ ],
+ "x-ms-correlation-request-id": [
+ "4da5b26f-3723-4968-8204-923d22c75904"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212517Z:4da5b26f-3723-4968-8204-923d22c75904"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c06f23c-2c6c-4c6b-b4c5-b7f56d1477ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13508"
+ ],
+ "x-ms-correlation-request-id": [
+ "346c9a82-2428-492b-8c2c-8550102cfccc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:346c9a82-2428-492b-8c2c-8550102cfccc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b2730939-1b76-482a-81aa-10f69c98d62d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13507"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3acff51-75a5-40de-87c0-8a7e235be519"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:c3acff51-75a5-40de-87c0-8a7e235be519"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "356"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6bdc4190-e398-4cc2-af24-5dc75fc2be2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13506"
+ ],
+ "x-ms-correlation-request-id": [
+ "d42940ce-6b0e-47c9-9892-2788a676d152"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:d42940ce-6b0e-47c9-9892-2788a676d152"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "5822"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b9af9a0-3205-42dd-a788-2f055473c288"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13505"
+ ],
+ "x-ms-correlation-request-id": [
+ "50ed224c-e2ac-4fe5-bd75-3e25bd193bdf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:50ed224c-e2ac-4fe5-bd75-3e25bd193bdf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3733117b-d17f-4993-a9ec-c6ddc0156fb9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13504"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b449141-c3a1-4e42-8ab0-ed09a62f9c5f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:9b449141-c3a1-4e42-8ab0-ed09a62f9c5f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2e30fbac-508b-48e5-b41d-80b8f3fa4c6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13503"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb46e2b7-53d5-4c28-9f99-8977fe99eb35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:bb46e2b7-53d5-4c28-9f99-8977fe99eb35"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe53a1b5-4e16-4cde-b5a5-009d0727141c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13502"
+ ],
+ "x-ms-correlation-request-id": [
+ "46d86672-91d3-462c-9753-37dd5849df3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:46d86672-91d3-462c-9753-37dd5849df3a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "408d5c5e-9dbd-44fd-a4dc-92215890614f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13501"
+ ],
+ "x-ms-correlation-request-id": [
+ "21c5755c-97d6-4056-af90-410b6cbdb5de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:21c5755c-97d6-4056-af90-410b6cbdb5de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a24f158d-652c-43d5-8bbe-d3a099ffbd8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13500"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca63831e-5c15-467f-b79f-f334816e55b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:ca63831e-5c15-467f-b79f-f334816e55b8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "df3c2731-88a6-44e3-97aa-88ba89869c48"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13499"
+ ],
+ "x-ms-correlation-request-id": [
+ "6785c69c-2f61-4dff-b9c9-fb66759affed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212518Z:6785c69c-2f61-4dff-b9c9-fb66759affed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5221dcc7-79e0-487d-9f61-3cc8934a7b54"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13498"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe42ff9c-33ac-4858-b226-bab284fcb26c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:fe42ff9c-33ac-4858-b226-bab284fcb26c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b97ef611-408c-46aa-b8f7-23c031333dc8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13497"
+ ],
+ "x-ms-correlation-request-id": [
+ "e99db35d-2f74-4796-9216-ba22bf9d17b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:e99db35d-2f74-4796-9216-ba22bf9d17b6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4c8d44c-1d68-4fef-b427-e2dde5d50d50"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13496"
+ ],
+ "x-ms-correlation-request-id": [
+ "41cef5cc-bb11-47b1-a49a-11f1f405347f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:41cef5cc-bb11-47b1-a49a-11f1f405347f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "106ceb3a-341f-47ac-b306-260d3a4bc737"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13495"
+ ],
+ "x-ms-correlation-request-id": [
+ "47992e95-1486-4690-a267-2cfc9637e9ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:47992e95-1486-4690-a267-2cfc9637e9ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "70c95ee7-aa2f-4988-91c2-34745a8f1431"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13494"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4ed32c8-0266-4f20-8b1f-2844d4965b00"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:d4ed32c8-0266-4f20-8b1f-2844d4965b00"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "36d05534-bfd3-4ce6-97e8-ad64340926cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13493"
+ ],
+ "x-ms-correlation-request-id": [
+ "d20752e6-09e0-4044-83e2-2271aa143bf8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:d20752e6-09e0-4044-83e2-2271aa143bf8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "60f99b95-6f03-4616-ac44-a633480ad07d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13492"
+ ],
+ "x-ms-correlation-request-id": [
+ "97c0d9ac-f877-4032-839d-3e90f0ee76a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:97c0d9ac-f877-4032-839d-3e90f0ee76a4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "991b5c9e-4b64-436a-8a13-9dd983c2ec9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13491"
+ ],
+ "x-ms-correlation-request-id": [
+ "a738b706-f684-4cd0-a8f1-4a1ebb2fad91"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:a738b706-f684-4cd0-a8f1-4a1ebb2fad91"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1d2dc0a7-a9a2-4a43-bd40-b1bfdf7f2afc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13490"
+ ],
+ "x-ms-correlation-request-id": [
+ "680829f7-ef88-4fd0-a05e-1122986e6090"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:680829f7-ef88-4fd0-a05e-1122986e6090"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "88240ae7-68ac-4a21-ae68-54ad50da1869"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13489"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c09f111-a205-4d4a-a817-8ccd70af191e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:6c09f111-a205-4d4a-a817-8ccd70af191e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61c507bc-29f9-491e-9fe4-b884f3b1846b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13488"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ec013e6-3620-432f-bbb3-fdbb7f939fd6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212519Z:5ec013e6-3620-432f-bbb3-fdbb7f939fd6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78131471-be8b-42fe-9f69-6d2913f49507"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13487"
+ ],
+ "x-ms-correlation-request-id": [
+ "0223b7f2-c69c-4788-bd8c-39094d3afe47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:0223b7f2-c69c-4788-bd8c-39094d3afe47"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61d46333-2ef2-4869-97e1-d3dad6b4c38e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13486"
+ ],
+ "x-ms-correlation-request-id": [
+ "25822591-fd4e-4e4f-98bc-d35e62cec0f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:25822591-fd4e-4e4f-98bc-d35e62cec0f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65d8239e-0ea9-4967-83a6-1954a6193d30"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13485"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d85bc6c-1b54-491f-903f-e378d8380f4b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:2d85bc6c-1b54-491f-903f-e378d8380f4b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2794818b-0aae-49cb-8436-80073105ef4b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13484"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaee43d8-89e2-4da6-acf1-3b3b61d7cd51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:eaee43d8-89e2-4da6-acf1-3b3b61d7cd51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1c68fb8d-ce36-40b0-b20a-655f2764365a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13483"
+ ],
+ "x-ms-correlation-request-id": [
+ "898c99e4-474a-4c50-9251-4965e1a4b9fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:898c99e4-474a-4c50-9251-4965e1a4b9fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ced9e2d3-5079-49e0-9606-d0fc004928f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13482"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cd37754-89e3-488d-9b73-802fbbd4644f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:2cd37754-89e3-488d-9b73-802fbbd4644f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4083"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "06baf067-a8f6-4fb0-b3ac-0222aad288f4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13481"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2c750f7-1d95-4ebf-98bd-51109dae7100"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:a2c750f7-1d95-4ebf-98bd-51109dae7100"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae9dd5b5-3c2f-41db-b140-d1a14b2bdd96"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13480"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fea5d9f-49b2-4d43-9e19-e78e4a56d13a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:3fea5d9f-49b2-4d43-9e19-e78e4a56d13a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "812cb507-bf36-428f-b8fa-b8a406da1e20"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13479"
+ ],
+ "x-ms-correlation-request-id": [
+ "a04f85a9-0877-417c-9f48-e27649aaf246"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:a04f85a9-0877-417c-9f48-e27649aaf246"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "987f19e9-d0cb-4807-8fed-449130a74372"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13478"
+ ],
+ "x-ms-correlation-request-id": [
+ "b20f4e6d-e7f0-42af-9d46-9f17679fcfb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212520Z:b20f4e6d-e7f0-42af-9d46-9f17679fcfb3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "422ae9fa-6477-4764-b34a-6d02377d12ba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13477"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ff0b8a3-22b7-4b92-a260-968fb940c1c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:8ff0b8a3-22b7-4b92-a260-968fb940c1c1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5a808676-2dc6-4461-ae85-f78be77edbb7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13476"
+ ],
+ "x-ms-correlation-request-id": [
+ "9820276a-23ff-4828-b1bc-f1c8661f0c8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:9820276a-23ff-4828-b1bc-f1c8661f0c8a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb7bac48-753a-466f-95b9-b5c5fdf10ea6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13475"
+ ],
+ "x-ms-correlation-request-id": [
+ "258dcd21-6fa6-470e-ae42-f287b1735d1c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:258dcd21-6fa6-470e-ae42-f287b1735d1c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5760e57b-f297-47b1-bd6e-53aacf00212a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13474"
+ ],
+ "x-ms-correlation-request-id": [
+ "64f49e60-6c02-48a7-bc98-c0e083d01b49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:64f49e60-6c02-48a7-bc98-c0e083d01b49"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09280d35-c185-4259-9695-99af2db659c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13473"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ba5704e-9917-4a23-8a37-c38179bec21e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:5ba5704e-9917-4a23-8a37-c38179bec21e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1c2dfa63-4645-49c6-ae73-a93bb19e6108"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13472"
+ ],
+ "x-ms-correlation-request-id": [
+ "29b5d477-1e66-4686-8a36-a8647d471ffc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:29b5d477-1e66-4686-8a36-a8647d471ffc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "50ef5888-9866-4fcb-ba6d-1ce6c2304008"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13471"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0f81024-0d58-46c2-9c2f-b95f619db43f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:e0f81024-0d58-46c2-9c2f-b95f619db43f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bb06b9b3-fe42-41fb-8111-31bb108324c0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13470"
+ ],
+ "x-ms-correlation-request-id": [
+ "5180d5f7-9984-4088-9d1b-ba72d3196fc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:5180d5f7-9984-4088-9d1b-ba72d3196fc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4a6c059b-6d46-4b4f-957e-21f3fafb2efc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13469"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c155ff2-f6e2-4031-b17b-7ef9b01380ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:4c155ff2-f6e2-4031-b17b-7ef9b01380ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3e6c0775-9ada-424a-a916-be69d1dfc01d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13468"
+ ],
+ "x-ms-correlation-request-id": [
+ "81d3420d-9a34-4ef3-b225-2962378b18dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:81d3420d-9a34-4ef3-b225-2962378b18dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4dfedb93-434a-4e8f-9282-244c5e4c24cb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13467"
+ ],
+ "x-ms-correlation-request-id": [
+ "61a5bc8c-60cc-4e95-a565-3eb64c6a10f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212521Z:61a5bc8c-60cc-4e95-a565-3eb64c6a10f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:20 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93c21114-903d-4c99-96a0-71b6b69f2810"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13466"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d5e00f1-0a1c-4f67-8cfd-d8ad003b3cc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:8d5e00f1-0a1c-4f67-8cfd-d8ad003b3cc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00861d16-0de7-40da-a430-e94402656018"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13465"
+ ],
+ "x-ms-correlation-request-id": [
+ "3406c3aa-7cd2-4258-80c0-5b52f7fee34e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:3406c3aa-7cd2-4258-80c0-5b52f7fee34e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "578ebd98-d204-4994-adde-6efb0b57f627"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13464"
+ ],
+ "x-ms-correlation-request-id": [
+ "62279c8f-7f4f-4507-8589-cd4bce84c427"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:62279c8f-7f4f-4507-8589-cd4bce84c427"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b4e4f9f-a31b-412f-b83f-579ceb8ad4ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13463"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bf8458e-0ef6-40ee-bae0-27e0c1569fbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:0bf8458e-0ef6-40ee-bae0-27e0c1569fbc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8601a4a1-c353-460d-a781-485a1fe55642"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13462"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf20eb35-aa31-42e2-a004-a50ed382fb42"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:cf20eb35-aa31-42e2-a004-a50ed382fb42"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "556"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "967c3e59-85fe-4498-8fad-b543e84328fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13461"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4c9e583-4d31-4aa4-98b3-5c822e30e02f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:f4c9e583-4d31-4aa4-98b3-5c822e30e02f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "553"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a927a7f-adb7-4588-98ea-865b63ac0252"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13460"
+ ],
+ "x-ms-correlation-request-id": [
+ "26e5beb8-44ff-4473-87c1-c3f3b439aefa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:26e5beb8-44ff-4473-87c1-c3f3b439aefa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89b70d3a-0404-479f-82d8-223ba04b2b87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13459"
+ ],
+ "x-ms-correlation-request-id": [
+ "01753a7f-5317-4699-9aad-9e10fbb82c16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212522Z:01753a7f-5317-4699-9aad-9e10fbb82c16"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:22 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==",
+ "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/couchbase/ArtifactTypes/VMImage/Offers/couchbase-server-30-community/Skus/cbs_30_ce/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3f030274-45be-426c-8270-f99f5435a14f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13458"
+ ],
+ "x-ms-correlation-request-id": [
+ "30495e4a-2704-47f7-bf5c-85de13ca9703"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:30495e4a-2704-47f7-bf5c-85de13ca9703"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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==",
+ "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\": \"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}",
+ "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": [
+ "86de1a9d-27fc-4b40-b119-48e1b9e3d03f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13457"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fb0663d-8886-4c62-aa81-f393bca65d46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:7fb0663d-8886-4c62-aa81-f393bca65d46"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "567"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "448b44c1-d2dd-4a3b-a929-393a654f411d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13456"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a82eb8b-7452-4bf1-b5f5-b9eb11dc577b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:4a82eb8b-7452-4bf1-b5f5-b9eb11dc577b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "52d60fc3-89ba-4279-83e1-155fe723dbbc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13455"
+ ],
+ "x-ms-correlation-request-id": [
+ "d945381e-44a4-42f6-9738-140c969c4100"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:d945381e-44a4-42f6-9738-140c969c4100"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3ee42d2-348d-48bc-87b0-b1c3eba0fab4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13454"
+ ],
+ "x-ms-correlation-request-id": [
+ "532439c4-166e-4d04-a76a-32257b5dbe7a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:532439c4-166e-4d04-a76a-32257b5dbe7a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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",
+ "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.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]",
+ "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": [
+ "67de8a6f-89ca-4b0c-8c75-09957720675e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13453"
+ ],
+ "x-ms-correlation-request-id": [
+ "8334bd11-e288-49df-bb7a-53ad31de58f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:8334bd11-e288-49df-bb7a-53ad31de58f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "532"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3937d65f-c549-41d1-b5d2-159b8a706049"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13452"
+ ],
+ "x-ms-correlation-request-id": [
+ "d44d19f9-057f-4a81-8ca6-de89306ae439"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:d44d19f9-057f-4a81-8ca6-de89306ae439"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "887cea0c-2320-47cf-b5a6-e1f992d446e2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13451"
+ ],
+ "x-ms-correlation-request-id": [
+ "7186aa99-7729-4b19-90e3-d2464fa21e44"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:7186aa99-7729-4b19-90e3-d2464fa21e44"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ee19ba4-dfba-4ae3-96d9-133064f2b096"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13450"
+ ],
+ "x-ms-correlation-request-id": [
+ "5dd52de6-35ac-4880-98a6-38bc101faf18"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212523Z:5dd52de6-35ac-4880-98a6-38bc101faf18"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:23 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==",
+ "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\": \"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]",
+ "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": [
+ "82f926b3-e008-404a-91c7-667e50f730eb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13449"
+ ],
+ "x-ms-correlation-request-id": [
+ "f027fdfe-699d-4c44-abbd-bb1862a253fd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:f027fdfe-699d-4c44-abbd-bb1862a253fd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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==",
+ "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\": \"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}",
+ "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": [
+ "00e2743a-1af3-4a6c-8f78-6b546956b9af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13448"
+ ],
+ "x-ms-correlation-request-id": [
+ "16807ad8-5665-458a-a066-5b6835c43be7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:16807ad8-5665-458a-a066-5b6835c43be7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "38be0350-be88-48a7-9427-4f6b976bcdc1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13447"
+ ],
+ "x-ms-correlation-request-id": [
+ "1584a9d9-c213-47ab-ba9f-ef9e65b190ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:1584a9d9-c213-47ab-ba9f-ef9e65b190ed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "42a79f1b-b69e-4042-8336-2fdcbe971832"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13446"
+ ],
+ "x-ms-correlation-request-id": [
+ "18821899-dd90-4a63-8963-fc860081ac1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:18821899-dd90-4a63-8963-fc860081ac1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e95c33fc-0880-4845-b02f-2e7faf07aa95"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13445"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe7d0a08-86c9-47ab-b39e-2b9c15f306ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:fe7d0a08-86c9-47ab-b39e-2b9c15f306ac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "939e807d-fc83-49c9-a735-5ac215c2d409"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13444"
+ ],
+ "x-ms-correlation-request-id": [
+ "18988b4c-bc78-46ce-8085-00708069a37d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:18988b4c-bc78-46ce-8085-00708069a37d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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==",
+ "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/dataexpeditioninc/ArtifactTypes/VMImage/Offers/expedat/Skus/expedat-windows-byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9dd120ab-055b-4da1-a1e3-766974af862f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13443"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6cfba8f-2d6b-4a2a-a3a7-466cf712b356"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:a6cfba8f-2d6b-4a2a-a3a7-466cf712b356"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5bcc873-9985-4ff3-8746-53564b96ca2e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13442"
+ ],
+ "x-ms-correlation-request-id": [
+ "10ddebf0-b76c-4e07-b9bb-882f2766b32a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212524Z:10ddebf0-b76c-4e07-b9bb-882f2766b32a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:24 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "36404756-5bf0-40e3-83b8-7a37dd29c8e0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13441"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf1b21e6-d839-475d-86b2-5c0854768f76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:cf1b21e6-d839-475d-86b2-5c0854768f76"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "285"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b58ccb5a-4f38-45d2-9f15-13f38d9e4506"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13440"
+ ],
+ "x-ms-correlation-request-id": [
+ "95b1bfb6-e33f-433c-afb2-1b9183f9eecf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:95b1bfb6-e33f-433c-afb2-1b9183f9eecf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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=",
+ "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/datalayer/ArtifactTypes/VMImage/Offers/datalayer-notebook/Skus/spark-hadoop-r-python/Versions/1.0.0\"\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": [
+ "be9b3eca-d384-46c7-a2b5-edecbddd58fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13439"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0269bda-f33d-476c-a03d-769997442056"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:b0269bda-f33d-476c-a03d-769997442056"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "97fbfd4f-cb48-4929-a2ca-bbf1166c020f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13438"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bbe21de-23a1-4956-bd21-e9688546d6ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:8bbe21de-23a1-4956-bd21-e9688546d6ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "42eb08cb-6f38-432f-b233-fce2775c5b2e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13437"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1783e5b-eee5-4e54-9fae-f47078d62319"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:e1783e5b-eee5-4e54-9fae-f47078d62319"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d6223a88-b100-4e3a-a893-7d714823af52"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13436"
+ ],
+ "x-ms-correlation-request-id": [
+ "411c1b59-78a2-493e-b3d8-2a93f892cb5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:411c1b59-78a2-493e-b3d8-2a93f892cb5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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",
+ "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.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]",
+ "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": [
+ "8574cf1d-c7e0-44c7-88be-372ef455279f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13435"
+ ],
+ "x-ms-correlation-request-id": [
+ "a52d3b8e-deca-4423-9aaa-ec4c062a02e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:a52d3b8e-deca-4423-9aaa-ec4c062a02e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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",
+ "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\": \"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}",
+ "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": [
+ "39cdf738-8301-499a-96b6-964b3a757f3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13434"
+ ],
+ "x-ms-correlation-request-id": [
+ "23105241-c0ea-4d78-9cd7-2cb6c422e2b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:23105241-c0ea-4d78-9cd7-2cb6c422e2b4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "77decfc5-dc4b-4640-8fcc-c0d06c7c6521"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13433"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb90857d-2354-47af-a955-b13d6a8518ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:cb90857d-2354-47af-a955-b13d6a8518ab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8d40f3fe-aa94-4087-b5bf-baa0fdc4f98c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13432"
+ ],
+ "x-ms-correlation-request-id": [
+ "c505f6ec-f30b-4b44-90a2-f255516aadad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212525Z:c505f6ec-f30b-4b44-90a2-f255516aadad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:25 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==",
+ "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/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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "521"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9655316b-ce14-4a8f-9b3d-7b19cb2afd90"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13431"
+ ],
+ "x-ms-correlation-request-id": [
+ "da60245c-3c33-4827-8b68-ed41e991112c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:da60245c-3c33-4827-8b68-ed41e991112c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "08f63c2f-effb-4155-bf23-e0c63677a642"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13430"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7992e34-ede4-4c0b-9f90-4c8b8edcd442"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:f7992e34-ede4-4c0b-9f90-4c8b8edcd442"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "627"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "79085dd6-a307-430a-b117-02dacc4d9416"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13429"
+ ],
+ "x-ms-correlation-request-id": [
+ "23353d59-4ef7-4ad5-80b6-4b6a450f7f6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:23353d59-4ef7-4ad5-80b6-4b6a450f7f6c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "669"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1aef7cb-e476-4d7f-98ad-3b06570c92ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13428"
+ ],
+ "x-ms-correlation-request-id": [
+ "a04755ff-2d11-4f58-83cd-0763afea18e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:a04755ff-2d11-4f58-83cd-0763afea18e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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/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": [
+ "337"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e5dc219-95a1-4ed6-8eed-e38f6fbd8801"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13427"
+ ],
+ "x-ms-correlation-request-id": [
+ "14ae0697-b4b0-447e-97fe-e63c6a19d4a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:14ae0697-b4b0-447e-97fe-e63c6a19d4a9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "777"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "55d4c27a-4678-47c4-ba99-d55e5ff80667"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13426"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d42806c-200a-4899-9efb-d48143cb78f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:7d42806c-200a-4899-9efb-d48143cb78f6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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",
+ "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/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": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a52a1303-f3d9-47dd-b539-e6a56140fe5c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13425"
+ ],
+ "x-ms-correlation-request-id": [
+ "e016b30e-03fd-4bbc-9f45-47b299ea67d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:e016b30e-03fd-4bbc-9f45-47b299ea67d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d2ea4271-165d-4071-8d86-ccc833008428"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13424"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7e76f8e-6fb5-4b54-8ee1-8958786e1e1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:e7e76f8e-6fb5-4b54-8ee1-8958786e1e1a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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==",
+ "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\": \"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]",
+ "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": [
+ "fedd12de-28b2-4e22-aca4-6cd6cf0816a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13423"
+ ],
+ "x-ms-correlation-request-id": [
+ "04565442-95c8-42b1-829d-5dcbc78227db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:04565442-95c8-42b1-829d-5dcbc78227db"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "345"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5d1f23d-5a7f-41c8-ba8e-c81b5be8e23b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13422"
+ ],
+ "x-ms-correlation-request-id": [
+ "df4edc29-158e-4204-a5c9-2f7076e048d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212526Z:df4edc29-158e-4204-a5c9-2f7076e048d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:26 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",
+ "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/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": [
+ "333"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91e8162d-3262-496a-bd21-d403c981c5f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13421"
+ ],
+ "x-ms-correlation-request-id": [
+ "efded897-e11f-4be3-bf6e-cead94805b06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:efded897-e11f-4be3-bf6e-cead94805b06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "618"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "011685eb-e822-4de8-8b90-f9c986fb0a31"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13420"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3e443be-a4bf-44a1-8402-4e3a3eeafc8d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:d3e443be-a4bf-44a1-8402-4e3a3eeafc8d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "46d8b70b-5a0e-4c7a-a590-a28a057a3028"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13419"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c350129-30af-4f3a-97fd-107f05dfc022"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:0c350129-30af-4f3a-97fd-107f05dfc022"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1845"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3298ef6f-b522-4448-b64d-96015a49e041"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13418"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe1e3bbe-2cf4-4b75-bc43-79b2df1bc24f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:fe1e3bbe-2cf4-4b75-bc43-79b2df1bc24f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "343"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "55ec1875-4947-4dd0-9bb1-53379b02ef55"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13417"
+ ],
+ "x-ms-correlation-request-id": [
+ "1688e47a-70c7-4e8f-97c4-ae951f15513e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:1688e47a-70c7-4e8f-97c4-ae951f15513e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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==",
+ "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/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": [
+ "325"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c6cb6aca-7ca3-4ea1-ac96-a2d2d59f7b4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13416"
+ ],
+ "x-ms-correlation-request-id": [
+ "ce048d22-4c2d-4a13-8d12-ec64d73288e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:ce048d22-4c2d-4a13-8d12-ec64d73288e1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "602"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c2f30322-3841-4c2f-bc35-402c340ea3ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13415"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ab75ada-5f5f-4a53-91c7-ae415779c998"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:5ab75ada-5f5f-4a53-91c7-ae415779c998"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "279ba93f-1373-4982-8974-9c76b76bdeca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13414"
+ ],
+ "x-ms-correlation-request-id": [
+ "113e76e7-991f-4237-b04a-3e445f06ed17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:113e76e7-991f-4237-b04a-3e445f06ed17"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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=",
+ "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/dell_software/ArtifactTypes/VMImage/Offers/changebase-6/Skus/changebasebyol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b954e70-a5eb-42e3-b989-d5dce25b2582"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13413"
+ ],
+ "x-ms-correlation-request-id": [
+ "993e0595-13dc-485f-92b9-648ece50438a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212527Z:993e0595-13dc-485f-92b9-648ece50438a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "75e5155f-b183-4f00-b2fa-96ff828aec5c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13412"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c0cd6bf-8804-4e7b-a3af-b3f713387b07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:1c0cd6bf-8804-4e7b-a3af-b3f713387b07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "327"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "12986c17-3031-45e2-b940-bf69810e0e65"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13411"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cac1f18-af53-4e36-bb05-7061f0dbf4e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:3cac1f18-af53-4e36-bb05-7061f0dbf4e3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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=",
+ "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/dell_software/ArtifactTypes/VMImage/Offers/migration_suite_sharepoint/Skus/migration_suite_sharepoint_win2008r2/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "311"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "40502596-bac4-4e15-8ba4-99c3e1256b6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13410"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a732af8-ccef-45da-9e71-964869c91ca4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:3a732af8-ccef-45da-9e71-964869c91ca4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bf88c875-4ecc-4f8b-bba0-5554dca5652f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13409"
+ ],
+ "x-ms-correlation-request-id": [
+ "3505e111-00a8-46d6-84b3-ea16e8ff95eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:3505e111-00a8-46d6-84b3-ea16e8ff95eb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "318"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9ac5ae2f-1e2b-453a-9d67-9fef2afad3f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13408"
+ ],
+ "x-ms-correlation-request-id": [
+ "bad3828e-9235-4bb9-b605-5c545b944443"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:bad3828e-9235-4bb9-b605-5c545b944443"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "08d18ed7-f7e5-47a5-8e82-abe31f7b5198"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13407"
+ ],
+ "x-ms-correlation-request-id": [
+ "152a84cd-9399-48bb-9499-0117899827fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:152a84cd-9399-48bb-9499-0117899827fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6bcff68d-e81c-4654-acb6-43db8902eccb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13406"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb9fe2cf-9bc2-4a3f-89b7-820ff4346cbf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:cb9fe2cf-9bc2-4a3f-89b7-820ff4346cbf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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",
+ "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/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": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "223642fc-86ab-41d1-aec9-0717cb19ea65"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13405"
+ ],
+ "x-ms-correlation-request-id": [
+ "e33f7e3d-5ceb-49f4-a0e6-5ac52e6334e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:e33f7e3d-5ceb-49f4-a0e6-5ac52e6334e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e4b8e99-b69a-4a03-92aa-f0b0affdb37f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13404"
+ ],
+ "x-ms-correlation-request-id": [
+ "9acb17a1-35e3-4a73-86ad-3dbd375622c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:9acb17a1-35e3-4a73-86ad-3dbd375622c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "310"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "943370d3-86d0-4ded-8b8c-2c579cf463e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13403"
+ ],
+ "x-ms-correlation-request-id": [
+ "e6fd5d5a-9153-4765-adb2-47c57979f039"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212528Z:e6fd5d5a-9153-4765-adb2-47c57979f039"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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=",
+ "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/dell_software/ArtifactTypes/VMImage/Offers/toad-intelligence-central/Skus/toad_intelligence_central_24/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "37bab9f4-ad7e-48c2-9bb8-cd7eaa0e232e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13402"
+ ],
+ "x-ms-correlation-request-id": [
+ "c19664c6-dfaa-41f7-833a-c831e81a3391"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:c19664c6-dfaa-41f7-833a-c831e81a3391"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:28 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "556"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c4f6b481-ebbf-4331-b494-65d43b06758a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13401"
+ ],
+ "x-ms-correlation-request-id": [
+ "007a447d-fdf2-49b4-9af0-0022f777dfdc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:007a447d-fdf2-49b4-9af0-0022f777dfdc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91b8d1e8-8e6d-48d1-bc07-020967ca89c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13400"
+ ],
+ "x-ms-correlation-request-id": [
+ "531100d6-386d-4b20-bc17-9f4f23929c53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:531100d6-386d-4b20-bc17-9f4f23929c53"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "52d1574a-2cac-4cdc-9c5c-a62949e06855"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13399"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7166cfd-950d-4153-b791-ac66d277f8dd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:b7166cfd-950d-4153-b791-ac66d277f8dd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "466"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "662733f0-c64c-411e-9673-33ff11bda4ed"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13398"
+ ],
+ "x-ms-correlation-request-id": [
+ "41e3af10-68fd-4b6e-9f75-a79df1251b48"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:41e3af10-68fd-4b6e-9f75-a79df1251b48"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "247"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2b846572-ef2c-4aa1-a418-3c45b1efdabb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13397"
+ ],
+ "x-ms-correlation-request-id": [
+ "f52e3570-6d9a-47d5-baae-efaee2f0de0a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:f52e3570-6d9a-47d5-baae-efaee2f0de0a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4744b58c-faca-4c5c-8780-66fcf129a788"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13396"
+ ],
+ "x-ms-correlation-request-id": [
+ "e52bfad7-4cc1-48f8-88ae-f0db5d58eb13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:e52bfad7-4cc1-48f8-88ae-f0db5d58eb13"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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",
+ "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/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": [
+ "30fd3ed2-e68d-48cf-a2ad-d7e5cf099853"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13395"
+ ],
+ "x-ms-correlation-request-id": [
+ "3de78214-5983-4547-a582-d917fa3a3e76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:3de78214-5983-4547-a582-d917fa3a3e76"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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",
+ "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\": \"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}",
+ "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": [
+ "42411a2b-d320-4b92-889a-76952e30e7fb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13394"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccec96c7-a47a-4de2-b74e-2e0a5a37fd66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212529Z:ccec96c7-a47a-4de2-b74e-2e0a5a37fd66"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e6440b3-aff6-4458-888e-ea8013247b15"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13393"
+ ],
+ "x-ms-correlation-request-id": [
+ "e323f43b-c24e-45c6-afcd-0a4d9f8032a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:e323f43b-c24e-45c6-afcd-0a4d9f8032a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:29 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=",
+ "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\": \"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]",
+ "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": [
+ "ff5fe519-6125-4ec8-8d00-cb3c6d8819a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13392"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff272703-6a28-4a11-a430-75d6f5156e87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:ff272703-6a28-4a11-a430-75d6f5156e87"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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/dgsecure/ArtifactTypes/VMImage/Offers/dgsecure/Skus/dgsecure_byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4ffaf27-9f37-4f5d-8cd7-25eb51e51a21"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13391"
+ ],
+ "x-ms-correlation-request-id": [
+ "eda2c78c-034d-4d87-a60c-074d68be4cb9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:eda2c78c-034d-4d87-a60c-074d68be4cb9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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\": \"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}",
+ "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": [
+ "32b4a4bb-6868-4751-bb78-bced69e9d664"
+ ],
+ "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": [
+ "3cbcd3d6-e7c4-4267-80b1-95d550563549"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:3cbcd3d6-e7c4-4267-80b1-95d550563549"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fa371876-9837-436b-b767-c4978ba630a4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13389"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4a4d18f-8bef-4d2e-a6ff-5340a8010eff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:a4a4d18f-8bef-4d2e-a6ff-5340a8010eff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7be2401e-b5ae-42a6-bf42-d46ccb4ade15"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13388"
+ ],
+ "x-ms-correlation-request-id": [
+ "05cd97c7-c3c7-47ac-a225-56afbab8eec3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:05cd97c7-c3c7-47ac-a225-56afbab8eec3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7c8cacd9-ecdd-4d22-adf5-a35c9a7b2dc7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13387"
+ ],
+ "x-ms-correlation-request-id": [
+ "606ed8a3-6478-4aa8-bcc9-dc0961afa735"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:606ed8a3-6478-4aa8-bcc9-dc0961afa735"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e8c31c17-e090-44eb-b3f2-8e1325392652"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13386"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f9d9cde-e759-4354-9645-6809cfd09df3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:4f9d9cde-e759-4354-9645-6809cfd09df3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "481"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bb5d9a72-01ee-49dd-8058-4555540c6629"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13385"
+ ],
+ "x-ms-correlation-request-id": [
+ "81e84158-4ff8-4b22-be58-09ee452b1dd7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:81e84158-4ff8-4b22-be58-09ee452b1dd7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "66bbce96-00ca-425f-93e6-09e3f3761ed1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13384"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2de0368-cd64-4f36-b2d7-0f97c3b7b253"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212530Z:b2de0368-cd64-4f36-b2d7-0f97c3b7b253"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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",
+ "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.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]",
+ "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": [
+ "eaaa0e48-bd0a-4162-81ac-5cc9304d75b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13383"
+ ],
+ "x-ms-correlation-request-id": [
+ "a38f7173-d2ce-43dd-b035-72558a412df9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212531Z:a38f7173-d2ce-43dd-b035-72558a412df9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:30 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9b1a66d-5556-431f-ba50-d0c948c1b680"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13382"
+ ],
+ "x-ms-correlation-request-id": [
+ "38a7218f-5955-4c0d-8a7f-db1b1b097412"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212531Z:38a7218f-5955-4c0d-8a7f-db1b1b097412"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "faab7ecf-ee7c-4821-91ac-c405d7460b1a"
+ ],
+ "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": [
+ "5b7f8399-be7c-4241-b4af-be7d1c90ade0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212531Z:5b7f8399-be7c-4241-b4af-be7d1c90ade0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:31 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",
+ "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/donovapub/ArtifactTypes/VMImage/Offers/domino2go-byol/Skus/domino2go-byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "83a4712c-1cc5-4280-9c66-71d23dc5d5a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13380"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9587e42-4876-4d14-9876-5f3695d583f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212531Z:b9587e42-4876-4d14-9876-5f3695d583f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:31 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "540"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a94f4f5-6d17-4420-b2c9-004a267fe228"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13379"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c376c85-e7e9-4e6e-81b0-c8b4eb4b16c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212531Z:4c376c85-e7e9-4e6e-81b0-c8b4eb4b16c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "225"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "68666235-7f79-48d4-b2fb-20a4af3f0a28"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13378"
+ ],
+ "x-ms-correlation-request-id": [
+ "6276278c-c316-4cec-be10-339a6120c9d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:6276278c-c316-4cec-be10-339a6120c9d3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:31 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1312578a-db8d-4d5a-8046-7bd3baf7684f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13377"
+ ],
+ "x-ms-correlation-request-id": [
+ "de1519ca-1903-4f17-a8ba-8b800db32925"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:de1519ca-1903-4f17-a8ba-8b800db32925"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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==",
+ "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/drone/ArtifactTypes/VMImage/Offers/drone/Skus/free/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "250"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d1cd14e-d166-457b-a19f-6b105861d541"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13376"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1e5dec2-a69c-448c-9bc3-a9f0011788ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:c1e5dec2-a69c-448c-9bc3-a9f0011788ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "450"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1175088f-cdc4-4329-9839-36f93b2ae5c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13375"
+ ],
+ "x-ms-correlation-request-id": [
+ "2493447c-105e-4ab4-aebb-a311a5d4b380"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:2493447c-105e-4ab4-aebb-a311a5d4b380"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "263d9d5a-7eb3-4461-95c5-cecbe1889aa6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13374"
+ ],
+ "x-ms-correlation-request-id": [
+ "77166f21-b720-4f34-9836-22f0ed4244ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:77166f21-b720-4f34-9836-22f0ed4244ac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "32ed2d38-db2a-4147-afff-531b097d9a04"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13373"
+ ],
+ "x-ms-correlation-request-id": [
+ "50be194b-6832-4169-b4f5-1517faf82d36"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:50be194b-6832-4169-b4f5-1517faf82d36"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "34cdd583-b0d2-49d5-9c44-696cc0a06f07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13372"
+ ],
+ "x-ms-correlation-request-id": [
+ "131f921d-217b-4a6a-8c72-bd0ead7206dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:131f921d-217b-4a6a-8c72-bd0ead7206dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f5d2003-b3b5-4a27-b69b-0ac4476795d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13371"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a8e2017-b2d3-42ed-9cc4-cd3751a47a49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212532Z:6a8e2017-b2d3-42ed-9cc4-cd3751a47a49"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "13086c8c-6ef9-4aa9-85f0-79575c88ca94"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13370"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b1b2493-aeb9-4b66-801c-dccccbef511f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:7b1b2493-aeb9-4b66-801c-dccccbef511f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:32 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "249"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67552d34-0a84-4919-8e56-87d9b81716bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13369"
+ ],
+ "x-ms-correlation-request-id": [
+ "0431b710-5e9b-4e42-93e6-10460d2f13df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:0431b710-5e9b-4e42-93e6-10460d2f13df"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09e3f846-1868-4dfb-94ec-a015e7b138b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13368"
+ ],
+ "x-ms-correlation-request-id": [
+ "e62f11f8-6900-4ef5-a44a-057d3531be7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:e62f11f8-6900-4ef5-a44a-057d3531be7c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4bee25dd-68c3-4709-a6d8-749678b1dcb8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13367"
+ ],
+ "x-ms-correlation-request-id": [
+ "f78da28b-55e9-45c2-8890-52e9e89f331e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:f78da28b-55e9-45c2-8890-52e9e89f331e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab83bcab-e983-462d-92b0-583c974372ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13366"
+ ],
+ "x-ms-correlation-request-id": [
+ "d69e29a2-d6a3-48ad-8984-8939e08508d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:d69e29a2-d6a3-48ad-8984-8939e08508d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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==",
+ "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\": \"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]",
+ "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": [
+ "080216d7-e21f-4638-b232-9df282fb01bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13365"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7236e04-7802-4b34-b8d0-3313f08672a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:c7236e04-7802-4b34-b8d0-3313f08672a3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a518f50d-ff86-4ada-9718-2f35124a578a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13364"
+ ],
+ "x-ms-correlation-request-id": [
+ "77e54f08-0ecf-4779-a172-218832d97835"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212533Z:77e54f08-0ecf-4779-a172-218832d97835"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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",
+ "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/egress/ArtifactTypes/VMImage/Offers/egress-switch-gateway/Skus/shsg-azu-0001/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fd22013c-5970-4bd4-ac32-0553d12e329a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13363"
+ ],
+ "x-ms-correlation-request-id": [
+ "b73d5131-cfb2-420f-9b85-be586f922fb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:b73d5131-cfb2-420f-9b85-be586f922fb2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:33 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7352611-3045-4868-b41c-01e85e0558ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13362"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e7c47b3-6cec-48b5-8e4f-4ac1b997284a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:6e7c47b3-6cec-48b5-8e4f-4ac1b997284a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f9cc7185-053b-401c-a4e9-42e22475b4f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13361"
+ ],
+ "x-ms-correlation-request-id": [
+ "3acd91e9-6854-45d2-b2a0-85e7f5b29be4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:3acd91e9-6854-45d2-b2a0-85e7f5b29be4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6996e823-7640-4852-8ffa-c0b446d831c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13360"
+ ],
+ "x-ms-correlation-request-id": [
+ "39518d2b-8179-4eb1-808f-deae0e799f7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:39518d2b-8179-4eb1-808f-deae0e799f7b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "003b2e28-b35a-4d51-926c-b6da7ae6a286"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13359"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bbb6954-6a88-420e-ac97-4fc0f8b5ebe8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:6bbb6954-6a88-420e-ac97-4fc0f8b5ebe8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a62a2b40-d1d5-45f2-9ded-f1d5fb5a885e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13358"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef8cddb3-b11d-4b43-8d56-e7b0123d5c49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:ef8cddb3-b11d-4b43-8d56-e7b0123d5c49"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "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": [
+ "2a182bb0-ff84-4e64-a1e4-984a5c7d2b1c"
+ ],
+ "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": [
+ "6720884b-6922-41fc-8a45-33774b785674"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:6720884b-6922-41fc-8a45-33774b785674"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f79ea49a-1baf-47e6-be4b-1567cd6d8af4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13356"
+ ],
+ "x-ms-correlation-request-id": [
+ "5afe4180-2ba0-4d77-b7ee-62ab9eff9a04"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212534Z:5afe4180-2ba0-4d77-b7ee-62ab9eff9a04"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0184e2a8-3a97-4830-8cca-7ccc50e0db9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13355"
+ ],
+ "x-ms-correlation-request-id": [
+ "e93952b7-ff25-43ed-b25a-ca6bc7799e87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:e93952b7-ff25-43ed-b25a-ca6bc7799e87"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "780d1505-73d1-4116-8e1c-0e7475316029"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13354"
+ ],
+ "x-ms-correlation-request-id": [
+ "d074eabc-bc42-4f4f-bc1a-87bb783c9117"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:d074eabc-bc42-4f4f-bc1a-87bb783c9117"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61352756-8466-4086-abf9-627ebbc39fb5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13353"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c3cd8e3-4435-42ea-a8fe-a9faf5b7c5b8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:8c3cd8e3-4435-42ea-a8fe-a9faf5b7c5b8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:34 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "87742b78-5bd6-409c-b84b-f3f89234edf4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13352"
+ ],
+ "x-ms-correlation-request-id": [
+ "715b602a-0220-4973-b068-ef5b01559dec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:715b602a-0220-4973-b068-ef5b01559dec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09db9c74-a3cb-4aa7-8746-d76cb8953227"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13351"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe3badb1-bf41-4878-86da-eca0e2c93c23"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:fe3badb1-bf41-4878-86da-eca0e2c93c23"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b8e4383-931a-48ad-9cac-e9af720d1834"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13350"
+ ],
+ "x-ms-correlation-request-id": [
+ "d75320b7-98a4-413c-b258-ddc0749d11f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:d75320b7-98a4-413c-b258-ddc0749d11f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e419af22-e13e-4b49-bb16-58faebdcb9a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13349"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ba6721f-364d-4562-afe7-51521a958a26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:4ba6721f-364d-4562-afe7-51521a958a26"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ae250ed-4618-441e-9394-25e3103972fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13348"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6c2904e-0c1f-40eb-9f05-89b1e0c7f853"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:d6c2904e-0c1f-40eb-9f05-89b1e0c7f853"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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",
+ "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/eloquera/ArtifactTypes/VMImage/Offers/eloqueradb/Skus/eloqueradb/Versions/1.0.0\"\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": [
+ "2ab64de9-0b52-4506-9ab2-6a0bb52950c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13347"
+ ],
+ "x-ms-correlation-request-id": [
+ "974bed2b-7e2d-48ef-9a8c-30f0053a5961"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:974bed2b-7e2d-48ef-9a8c-30f0053a5961"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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",
+ "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\": \"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}",
+ "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": [
+ "536c423d-7f0a-4ced-a3ca-991b147dc9c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13346"
+ ],
+ "x-ms-correlation-request-id": [
+ "531e5130-430e-45c4-9c6a-7245c92b2ce0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212535Z:531e5130-430e-45c4-9c6a-7245c92b2ce0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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",
+ "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\": \"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]",
+ "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": [
+ "24fb6a38-c630-404a-ba8f-5f124be30120"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13345"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb991505-9c4b-482c-a1de-bde11cf404e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:fb991505-9c4b-482c-a1de-bde11cf404e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "55023dfd-5ef7-4a57-a354-cd9e975d0ce3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13344"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fced5a0-6b16-44c3-90d4-9450dfcac841"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:1fced5a0-6b16-44c3-90d4-9450dfcac841"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe511be8-f645-4430-90a8-b7b5a7b72599"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13343"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6d5bbd7-aa70-4fad-924f-86b1580ff78e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:c6d5bbd7-aa70-4fad-924f-86b1580ff78e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16327819-69eb-4fe5-8896-9e661c376682"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13342"
+ ],
+ "x-ms-correlation-request-id": [
+ "5decfbea-e464-4d83-8c3b-d093a0b1d390"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:5decfbea-e464-4d83-8c3b-d093a0b1d390"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e619dd66-c529-48d5-a6d5-776ed6962e34"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13341"
+ ],
+ "x-ms-correlation-request-id": [
+ "77289891-6642-4ab5-beb9-81098d93ca72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:77289891-6642-4ab5-beb9-81098d93ca72"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9c40f981-14b6-4b03-81bd-36b2136a7b10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13340"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a0d7700-6543-4768-952a-7c5a3e870737"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:7a0d7700-6543-4768-952a-7c5a3e870737"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "192bbb72-1203-4869-a3c5-6871091760c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13339"
+ ],
+ "x-ms-correlation-request-id": [
+ "f880d5f6-18d0-4f37-bdd9-27e86e7e94de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:f880d5f6-18d0-4f37-bdd9-27e86e7e94de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4e738f35-d674-4963-bdb5-a389d70e7179"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13338"
+ ],
+ "x-ms-correlation-request-id": [
+ "c05570c5-4917-47fd-85c0-e5d288a1fb38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:c05570c5-4917-47fd-85c0-e5d288a1fb38"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bd32ed52-efc9-46da-96fe-4a7b8930526c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13337"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a1222c5-0146-40b5-8933-0dc8983f208a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:0a1222c5-0146-40b5-8933-0dc8983f208a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e7c2b6c3-020b-4eb1-8f64-e2e3d1a0b5aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13336"
+ ],
+ "x-ms-correlation-request-id": [
+ "5deb8f72-3c21-40b7-ab35-50518b5b8cfb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212536Z:5deb8f72-3c21-40b7-ab35-50518b5b8cfb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d8748ec1-7f7c-4daa-aecc-38e647eecc6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13335"
+ ],
+ "x-ms-correlation-request-id": [
+ "79cbb792-c440-44c2-9a3e-3d18661a02f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:79cbb792-c440-44c2-9a3e-3d18661a02f2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "380fcac7-1ce7-4a04-9585-c4ec270327c2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13334"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd615167-b19b-48ce-8957-bde02a2407b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:fd615167-b19b-48ce-8957-bde02a2407b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:36 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "c64ddb37-d13d-47b6-9236-471e4de042be"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13333"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcbd2d87-3f5a-4cb7-b339-bc1aed23f389"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:bcbd2d87-3f5a-4cb7-b339-bc1aed23f389"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e54c902c-a746-4b66-8603-5424246a48e2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13332"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5f95700-01ac-4119-9514-6fc5d8daeea7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:a5f95700-01ac-4119-9514-6fc5d8daeea7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "247"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c5d44c76-65b1-4993-801b-ffc2e7188600"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13331"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d3f39c4-2edc-44db-aaf3-178e2181c1a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:3d3f39c4-2edc-44db-aaf3-178e2181c1a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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==",
+ "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\": \"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]",
+ "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": [
+ "d0877d14-2801-460b-82fa-4bee613b5027"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13330"
+ ],
+ "x-ms-correlation-request-id": [
+ "799cc758-5282-4435-91a7-7e4e26aca2b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:799cc758-5282-4435-91a7-7e4e26aca2b2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "476"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c81890e7-a37b-480e-b696-4303d211a070"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13329"
+ ],
+ "x-ms-correlation-request-id": [
+ "646abb6f-eb84-4598-b0f0-3a5c63a2a861"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:646abb6f-eb84-4598-b0f0-3a5c63a2a861"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "53db5d22-217b-453e-8697-7cb3b1e32bb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13328"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0bc5c55-04df-44eb-b159-a4fccff2710a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212537Z:c0bc5c55-04df-44eb-b159-a4fccff2710a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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",
+ "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\": \"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]",
+ "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": [
+ "5effbb45-8c11-459c-8871-f080da982571"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13327"
+ ],
+ "x-ms-correlation-request-id": [
+ "50ca347e-5308-4429-8e77-20ef19e99276"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:50ca347e-5308-4429-8e77-20ef19e99276"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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",
+ "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/exasol/ArtifactTypes/VMImage/Offers/exasolution-analytic-database/Skus/exasolution_database/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": [
+ "fcd14bf6-3e08-48cb-9b08-2ee90c6f3d94"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13326"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d5a2483-8c46-4ff8-b1be-3262ddc7e845"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:0d5a2483-8c46-4ff8-b1be-3262ddc7e845"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "532"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "513b7538-ac2a-40dd-a13c-4f36b46f1a9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13325"
+ ],
+ "x-ms-correlation-request-id": [
+ "953ca8e3-3b34-454d-a105-f6cab270010f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:953ca8e3-3b34-454d-a105-f6cab270010f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:37 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b3a89c2-7784-4f6a-a209-3350d4b980b8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13324"
+ ],
+ "x-ms-correlation-request-id": [
+ "3737952f-f502-49f5-a79b-388873bf4e2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:3737952f-f502-49f5-a79b-388873bf4e2d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "299ded8f-a85f-467d-8051-2bf7809b35aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13323"
+ ],
+ "x-ms-correlation-request-id": [
+ "75bc6a9b-2727-454e-8288-51ef5e2d6951"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:75bc6a9b-2727-454e-8288-51ef5e2d6951"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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==",
+ "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.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]",
+ "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": [
+ "11da77eb-c0a5-42aa-beaa-b83c1768784a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13322"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c43076b-cb03-4b96-8c57-071c8549980f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:1c43076b-cb03-4b96-8c57-071c8549980f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d653632c-48f3-485f-ad0f-dff6cffb3fb1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13321"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b898b3a-d5d0-487e-92a3-7fb0cd18bae3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:6b898b3a-d5d0-487e-92a3-7fb0cd18bae3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "530236fc-e234-48b3-abbf-3f36094ac1df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13320"
+ ],
+ "x-ms-correlation-request-id": [
+ "9fc56fc5-7553-42a5-a9fe-d1c4c68f99ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:9fc56fc5-7553-42a5-a9fe-d1c4c68f99ac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "285"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a647d86-fbd4-4560-9501-f9e3e7efdf40"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13319"
+ ],
+ "x-ms-correlation-request-id": [
+ "331cb933-04a3-4bab-80bc-defbf1156fa0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:331cb933-04a3-4bab-80bc-defbf1156fa0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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=",
+ "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.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]",
+ "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": [
+ "994a9ca4-b2c0-4f50-8b09-799e37c2083a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13318"
+ ],
+ "x-ms-correlation-request-id": [
+ "b81cbe10-2e6e-410e-ac82-482d3d8df6db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212538Z:b81cbe10-2e6e-410e-ac82-482d3d8df6db"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "52d4fb01-7b5b-4aaf-a54a-14c47e6df474"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13317"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a56cdd1-56f8-4706-b4f4-7c9c51b0702d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:7a56cdd1-56f8-4706-b4f4-7c9c51b0702d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e4446c33-e47b-43d8-888b-f1225036dcea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13316"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bc46188-3425-4a61-9cfc-48af5eb24a89"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:4bc46188-3425-4a61-9cfc-48af5eb24a89"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:38 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "230"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d57b2381-412e-40d6-ad19-d6588671998c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13315"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9bc03ce-90dc-4f95-8b43-9cf57a0f685d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:a9bc03ce-90dc-4f95-8b43-9cf57a0f685d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "711"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "23217a63-96b2-4c2b-9928-7a8816c16134"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13314"
+ ],
+ "x-ms-correlation-request-id": [
+ "e04206d1-1290-4533-a3d5-1a1a8321bb20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:e04206d1-1290-4533-a3d5-1a1a8321bb20"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/10tb/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dc3ce241-1385-43dd-8e72-657e20cfe3c1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13313"
+ ],
+ "x-ms-correlation-request-id": [
+ "de3361dd-16b0-42b8-a8ac-33e5c3cd1962"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:de3361dd-16b0-42b8-a8ac-33e5c3cd1962"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9104f741-631c-4185-bfac-c9feda69e5f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13312"
+ ],
+ "x-ms-correlation-request-id": [
+ "32576228-26b0-44e5-9bb9-42c82a7a1c82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:32576228-26b0-44e5-9bb9-42c82a7a1c82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/20tb/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "707afa69-2bc6-4ab3-9da4-4db5a3343610"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13311"
+ ],
+ "x-ms-correlation-request-id": [
+ "47331f85-03ba-47c3-96b6-d8f354602f1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:47331f85-03ba-47c3-96b6-d8f354602f1e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c91691f0-e624-4019-a09e-894218370c41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13310"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e0af6d2-9518-4d5f-ad68-852094fe9c54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:8e0af6d2-9518-4d5f-ad68-852094fe9c54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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/filebridge/ArtifactTypes/VMImage/Offers/azure/Skus/50tb/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "561f4bd4-83f4-4e27-8f41-9f15af1b071b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13309"
+ ],
+ "x-ms-correlation-request-id": [
+ "94ea4191-6344-4140-a33a-abc369daaf7a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212539Z:94ea4191-6344-4140-a33a-abc369daaf7a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "462"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "73cb63b3-4c06-40b3-9de9-7fdadb889c1b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13308"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa39f89a-dd02-40eb-befb-3f09b18c9821"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:aa39f89a-dd02-40eb-befb-3f09b18c9821"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "503"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0d70f1f2-5c6a-42d7-997b-447838acedb5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13307"
+ ],
+ "x-ms-correlation-request-id": [
+ "b81ef74d-0db7-4564-b77e-73a04f1f480f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:b81ef74d-0db7-4564-b77e-73a04f1f480f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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=",
+ "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\": \"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]",
+ "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": [
+ "76e4af36-b296-452a-97a0-1101b384ceea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13306"
+ ],
+ "x-ms-correlation-request-id": [
+ "1aae7eee-5e74-4440-b036-12e248ac6633"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:1aae7eee-5e74-4440-b036-12e248ac6633"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:39 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9f6ddc9b-1c34-4e21-a281-6358426e3713"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13305"
+ ],
+ "x-ms-correlation-request-id": [
+ "e4c63117-938f-421c-89cc-0ee0da41da29"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:e4c63117-938f-421c-89cc-0ee0da41da29"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fadab03-0778-4d51-a0d7-4f6ff59e1c3c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13304"
+ ],
+ "x-ms-correlation-request-id": [
+ "91c818d6-c2e9-422f-8df2-a2758115c390"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:91c818d6-c2e9-422f-8df2-a2758115c390"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3da76827-9682-4e84-ba09-e31f28f303f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13303"
+ ],
+ "x-ms-correlation-request-id": [
+ "31bef33a-d3cf-4170-a9f7-07cd70c869f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:31bef33a-d3cf-4170-a9f7-07cd70c869f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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",
+ "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/firehost/ArtifactTypes/VMImage/Offers/firehost_armor_ubuntu/Skus/byol_ubuntu/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c5a56ae5-894e-4cf0-b02c-dabd95e68ee5"
+ ],
+ "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": [
+ "db4ae058-cba5-42f0-86e2-ecdfcd0cb2e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:db4ae058-cba5-42f0-86e2-ecdfcd0cb2e4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "37a5fb7a-6661-49b1-9436-e7ef128e5310"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13301"
+ ],
+ "x-ms-correlation-request-id": [
+ "15eaf4e3-e12f-4735-93ff-17e4b24b9710"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:15eaf4e3-e12f-4735-93ff-17e4b24b9710"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1f7d3eaa-3dd9-4f3d-a1c1-640ec8e5dff9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13300"
+ ],
+ "x-ms-correlation-request-id": [
+ "b536fabe-ffc8-41fb-b306-0f58782835d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:b536fabe-ffc8-41fb-b306-0f58782835d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6215c08c-b2b1-4dc0-bbb5-c76971960850"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13299"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c453858-8278-4f56-9a62-2915ec02271a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212540Z:6c453858-8278-4f56-9a62-2915ec02271a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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==",
+ "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/flexerasoftware/ArtifactTypes/VMImage/Offers/flexera-software-licensing/Skus/software-monetization/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62d7ac37-221a-4f83-88c9-bf70744ece79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13298"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f399753-e1d8-4dfd-8cef-c092ca9e153d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:7f399753-e1d8-4dfd-8cef-c092ca9e153d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fde6aedd-94cc-45c7-879c-6b84348da768"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13297"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9e96b37-eac2-4b71-b467-728da36738e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:f9e96b37-eac2-4b71-b467-728da36738e2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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==",
+ "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\": \"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]",
+ "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": [
+ "2a03c525-3a33-4fc9-b9c1-346cb01d113f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13296"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c5c1a7b-407c-459c-bd77-c85e92ce05cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:4c5c1a7b-407c-459c-bd77-c85e92ce05cc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "df84d1f1-01aa-4477-ab4e-f6ed082f9fc1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13295"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0af5bf4-9e05-4b6c-acf1-a49be5e072e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:d0af5bf4-9e05-4b6c-acf1-a49be5e072e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2e634cfb-2ef4-4593-83a4-8af348750dbf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13294"
+ ],
+ "x-ms-correlation-request-id": [
+ "3617d71f-89b9-485a-a576-447cf155fa34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:3617d71f-89b9-485a-a576-447cf155fa34"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9edcb0f2-6348-43b4-b888-2367038663d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13293"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fffd2a0-6e26-4602-a6cf-cc9a3161e9dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:1fffd2a0-6e26-4602-a6cf-cc9a3161e9dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "be703a6d-b27b-496c-82e3-acf9f6f081a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13292"
+ ],
+ "x-ms-correlation-request-id": [
+ "078a6b33-1f61-4091-9961-cf784b9c9b25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:078a6b33-1f61-4091-9961-cf784b9c9b25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "53ab556e-fa20-42c8-b2dd-a72424becf0a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13291"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d357066-efda-40e8-a8bd-8efc0bfcba8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212541Z:6d357066-efda-40e8-a8bd-8efc0bfcba8c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "0d8a6162-4e64-4a1f-9c12-9bddd75677a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13290"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a6235e7-f297-4b6a-84f7-f5917fada97e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:3a6235e7-f297-4b6a-84f7-f5917fada97e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "250"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "31a7dfbb-129f-4520-ac20-655cae2cb32a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13289"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9eea991-b8f3-4ad8-b34d-7f1a9a948113"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:f9eea991-b8f3-4ad8-b34d-7f1a9a948113"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "18eda0d0-2d2f-4483-9007-1dec070b06bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13288"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4e77251-e303-47d7-845b-9f4b560b1b0e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:b4e77251-e303-47d7-845b-9f4b560b1b0e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:41 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f64668f-afa0-4fe6-8c6f-3fa17d8b9956"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13287"
+ ],
+ "x-ms-correlation-request-id": [
+ "a047e456-3d1a-4012-90bc-60aeca661fcc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:a047e456-3d1a-4012-90bc-60aeca661fcc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "375"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f39c203-915f-4b75-bc7e-09cdcb066fcf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13286"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dc642c0-bbc9-4377-b1d1-ebf53ea08e78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:4dc642c0-bbc9-4377-b1d1-ebf53ea08e78"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89b4388f-d680-4e02-a4fb-ad9f7f3da752"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13285"
+ ],
+ "x-ms-correlation-request-id": [
+ "93fe6374-b428-4a6a-8093-d163808b945d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:93fe6374-b428-4a6a-8093-d163808b945d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8964b0a1-ae53-4ace-bb37-cee49d5ca709"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13284"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c9cdbfe-6777-4af9-bedd-14c9d2683940"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:1c9cdbfe-6777-4af9-bedd-14c9d2683940"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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=",
+ "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/greensql/ArtifactTypes/VMImage/Offers/greensql-database-security/Skus/greensql_database_security_azure/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d009e499-632c-4ff4-b1ab-c10e3ac522c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13283"
+ ],
+ "x-ms-correlation-request-id": [
+ "846aa647-93d2-4274-9dd0-e2fba6933a34"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:846aa647-93d2-4274-9dd0-e2fba6933a34"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "554"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99ca0155-5e62-4a62-b8c2-c27449f1b0d8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13282"
+ ],
+ "x-ms-correlation-request-id": [
+ "47a457fb-18ae-4371-8d7c-4a2bac5b261e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212542Z:47a457fb-18ae-4371-8d7c-4a2bac5b261e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "657537d8-a032-4ba0-aa2b-a957fb121974"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13281"
+ ],
+ "x-ms-correlation-request-id": [
+ "8edc9dcc-5a95-404c-8ffe-282c992e2313"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:8edc9dcc-5a95-404c-8ffe-282c992e2313"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb27070c-1663-4aed-af87-8124f44be8f2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13280"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b72f3a7-95a5-42ac-b2f4-a97d0e37118c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:9b72f3a7-95a5-42ac-b2f4-a97d0e37118c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d464e4d3-0245-4a7d-b3a1-5c63ebf383b8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13279"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e216258-4aa0-464d-92c9-4b120e4e42f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:5e216258-4aa0-464d-92c9-4b120e4e42f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3fdf2f20-4bcd-499b-8d61-397cbd272596"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13278"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc0f01f5-c55d-494d-bb63-fcaf8d7972e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:bc0f01f5-c55d-494d-bb63-fcaf8d7972e9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "06cd1184-8a9e-4cc9-ab85-9d3e5d6d087b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13277"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcacef38-8b0f-4fbd-9b24-f57f709dc260"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:bcacef38-8b0f-4fbd-9b24-f57f709dc260"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1011"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2827dac-f4a7-4558-ba54-2f72f91aaa2e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13276"
+ ],
+ "x-ms-correlation-request-id": [
+ "09b61b73-7d1b-495c-8828-4f95fc330ff3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:09b61b73-7d1b-495c-8828-4f95fc330ff3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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==",
+ "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.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]",
+ "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": [
+ "7b1357d7-31b5-4edb-b3f0-c6f08e9b8f07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13275"
+ ],
+ "x-ms-correlation-request-id": [
+ "75b899a0-4db0-4256-adeb-c6fbedd66c65"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:75b899a0-4db0-4256-adeb-c6fbedd66c65"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "476"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d89ffce0-ab1c-4eab-b560-399e55387045"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13274"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d9f10f2-88f0-4311-8548-ebaa40e8d0ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:7d9f10f2-88f0-4311-8548-ebaa40e8d0ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cbb9300d-a509-46e4-9318-7f959d7eabcf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13273"
+ ],
+ "x-ms-correlation-request-id": [
+ "06708e10-dbd4-4713-884d-335bab0a7c52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:06708e10-dbd4-4713-884d-335bab0a7c52"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a4d82f8-ced6-4d01-b56f-f3c088a47d5c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13272"
+ ],
+ "x-ms-correlation-request-id": [
+ "6bad9285-9d50-420b-b8bb-7763c0d2dc1f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:6bad9285-9d50-420b-b8bb-7763c0d2dc1f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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=",
+ "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/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd959b13-0c6c-4c69-88d8-2a998fa6948b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13271"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5b16305-5ac1-4c31-a8e8-a0da6e096cb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212543Z:a5b16305-5ac1-4c31-a8e8-a0da6e096cb2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "472"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aad210a2-c0d9-4b5f-aaba-7dd9e88dbff3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13270"
+ ],
+ "x-ms-correlation-request-id": [
+ "67968aa4-8267-4ea9-b00a-aa33002213fe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:67968aa4-8267-4ea9-b00a-aa33002213fe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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==",
+ "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/hanu/ArtifactTypes/VMImage/Offers/hanu-insight/Skus/standard-byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10a085b8-14c8-48d0-85a0-aa41f3e08106"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13269"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3bbecdb-67b6-4aec-a90a-cf9a34f222bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:c3bbecdb-67b6-4aec-a90a-cf9a34f222bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a3721d1-75bf-4b68-8be5-3773dee94b01"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13268"
+ ],
+ "x-ms-correlation-request-id": [
+ "5baa8f7f-1f08-429c-aca4-81a8d855e0d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:5baa8f7f-1f08-429c-aca4-81a8d855e0d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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==",
+ "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\": \"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]",
+ "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": [
+ "6ee4e149-22c9-44a7-8c93-89d59399450f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13267"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccce6985-e951-4f24-b827-c95e13a15c54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:ccce6985-e951-4f24-b827-c95e13a15c54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:43 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fcf4fde2-e97b-4630-9bf7-d89048a4ed88"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13266"
+ ],
+ "x-ms-correlation-request-id": [
+ "05049025-702c-42f7-9431-fd6c90e2058d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:05049025-702c-42f7-9431-fd6c90e2058d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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/hewlett-packard/ArtifactTypes/VMImage/Offers/hp-loadrunner/Skus/lr_12_02_ga_2012r2/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": [
+ "359ef8fd-0a37-4cdf-a577-1e9c02da997a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13265"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e0d7084-f177-454d-bf6a-265c67cc0886"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:4e0d7084-f177-454d-bf6a-265c67cc0886"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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\": \"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}",
+ "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": [
+ "ff415ff5-b001-4183-8e38-a5b97454dba0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13264"
+ ],
+ "x-ms-correlation-request-id": [
+ "a00e98eb-c2db-4159-a332-ae1a4d6af1c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:a00e98eb-c2db-4159-a332-ae1a4d6af1c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "499"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "81c2c625-17a3-4b6b-8dee-051515e4ff92"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13263"
+ ],
+ "x-ms-correlation-request-id": [
+ "80ac698f-8883-4220-98e3-02d53343762d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:80ac698f-8883-4220-98e3-02d53343762d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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=",
+ "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\": \"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]",
+ "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": [
+ "016feb69-47e9-4925-964d-ad4c746aa723"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13262"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d145b42-6c2c-4264-9f7d-2f435df80ba8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:7d145b42-6c2c-4264-9f7d-2f435df80ba8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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/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]",
+ "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": [
+ "3d6eb743-9675-460b-8eee-5968d9539dea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13261"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a5c907b-ce05-4274-8fd9-9aab0af7cb66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212544Z:6a5c907b-ce05-4274-8fd9-9aab0af7cb66"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1093"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ecef229f-0ca7-4f11-b43f-0d40f3c3a5aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13260"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ea4e55e-0ea2-4d06-8227-49c6b00e52c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:9ea4e55e-0ea2-4d06-8227-49c6b00e52c0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "791"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "840ef907-d731-4f63-b047-88f2395d7db6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13259"
+ ],
+ "x-ms-correlation-request-id": [
+ "9730e461-00c6-4e69-abf7-900c819e67c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:9730e461-00c6-4e69-abf7-900c819e67c0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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==",
+ "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\": \"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]",
+ "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": [
+ "56d2ce93-4b4e-4b86-b592-2b273c4677c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13258"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4a73340-afb2-4fd0-818c-3b58817cca94"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:a4a73340-afb2-4fd0-818c-3b58817cca94"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:44 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e00c03b-5ddb-4100-b4a3-80e26717b5a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13257"
+ ],
+ "x-ms-correlation-request-id": [
+ "fefe96a0-6879-4919-82f0-02c2b525d644"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:fefe96a0-6879-4919-82f0-02c2b525d644"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f6abc807-9299-4a47-8d88-3f556e601693"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13256"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0bda8e0-ec65-443e-bf13-5d2981cc53c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:d0bda8e0-ec65-443e-bf13-5d2981cc53c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "247"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "034d2d39-3ac8-4676-8eed-fd15bfeb4268"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13255"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5b41036-fbc8-4423-a4c6-a1df7193ce77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:f5b41036-fbc8-4423-a4c6-a1df7193ce77"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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=",
+ "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\": \"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]",
+ "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": [
+ "67150f2b-038a-4bbc-8554-890e8114670f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13254"
+ ],
+ "x-ms-correlation-request-id": [
+ "2bbcc22c-61f1-450f-b0ec-3034880cd510"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:2bbcc22c-61f1-450f-b0ec-3034880cd510"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0595cac-15c0-4abd-bc0d-9dfbc626de53"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13253"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cb0c573-4074-46da-a266-a0c897bfde6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:4cb0c573-4074-46da-a266-a0c897bfde6e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "510"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a4619d70-4b67-433a-8c0c-ca5af048ba63"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13252"
+ ],
+ "x-ms-correlation-request-id": [
+ "32192126-f5ff-4aa2-b16c-e7c5afeeabf4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212545Z:32192126-f5ff-4aa2-b16c-e7c5afeeabf4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8809dc19-b51c-4195-9f68-8a6c8904a91a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13251"
+ ],
+ "x-ms-correlation-request-id": [
+ "f58b902f-6053-4b90-beb9-118b23382f2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:f58b902f-6053-4b90-beb9-118b23382f2b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "490393a3-9a3f-48bd-a615-97ca884ab075"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13250"
+ ],
+ "x-ms-correlation-request-id": [
+ "792d80dd-5572-4030-9d17-631138dc0de9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:792d80dd-5572-4030-9d17-631138dc0de9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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",
+ "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/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": [
+ "3df0d0fe-e653-454a-99de-e5cbcdc45dd2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13249"
+ ],
+ "x-ms-correlation-request-id": [
+ "f725a6b4-1742-4662-8ba0-d3ba6cecc1b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:f725a6b4-1742-4662-8ba0-d3ba6cecc1b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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",
+ "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\": \"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}",
+ "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": [
+ "2ea8b6d8-2c62-4722-8c94-53759ba01978"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13248"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cc748ab-0d6b-4fb6-a765-303b67ac167a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:4cc748ab-0d6b-4fb6-a765-303b67ac167a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:45 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "db754f58-6c5c-4fd7-a50e-6d022df4713b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13247"
+ ],
+ "x-ms-correlation-request-id": [
+ "38f36246-5fc1-4439-8eb7-b98b3258d736"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:38f36246-5fc1-4439-8eb7-b98b3258d736"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1061"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93286303-db3b-43d6-99b9-ce8edd563ce8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13246"
+ ],
+ "x-ms-correlation-request-id": [
+ "bced09ff-1ee9-4fb1-b96d-f7deffcf4437"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:bced09ff-1ee9-4fb1-b96d-f7deffcf4437"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1aa602c-e95e-4b06-ac85-af9ad0e8d98e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13245"
+ ],
+ "x-ms-correlation-request-id": [
+ "454bde5a-c62d-4989-83b7-a0c94b810efb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:454bde5a-c62d-4989-83b7-a0c94b810efb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "564"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d527663e-20c4-4194-8792-f9cadf13b017"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13244"
+ ],
+ "x-ms-correlation-request-id": [
+ "b05ac171-a79f-4c95-a869-c4fba70f49d4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:b05ac171-a79f-4c95-a869-c4fba70f49d4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27b246b3-a022-45ad-880f-4f92fa4e2ec2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13243"
+ ],
+ "x-ms-correlation-request-id": [
+ "baa98202-5376-4c93-acb4-abc14f0c90c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212546Z:baa98202-5376-4c93-acb4-abc14f0c90c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "564"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d16fa06a-34c3-4ee5-be9e-095fae4e7766"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13242"
+ ],
+ "x-ms-correlation-request-id": [
+ "0430fbd6-0729-41a3-84c4-4e91e7b3afdb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:0430fbd6-0729-41a3-84c4-4e91e7b3afdb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d2448c1-a284-4f58-8f30-4ed7e664df67"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13241"
+ ],
+ "x-ms-correlation-request-id": [
+ "a594b0df-7e0d-4f9d-a452-375092ec96ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:a594b0df-7e0d-4f9d-a452-375092ec96ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "564"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9491923b-209c-47d7-bd70-f463a77f5ed4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13240"
+ ],
+ "x-ms-correlation-request-id": [
+ "716e567f-38a3-4839-b0a0-26ae89840d88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:716e567f-38a3-4839-b0a0-26ae89840d88"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cbd89a66-4188-4b82-bbb7-3193b823585b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13239"
+ ],
+ "x-ms-correlation-request-id": [
+ "c24203b2-96d9-468e-81a5-c821b06917c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:c24203b2-96d9-468e-81a5-c821b06917c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:46 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "566"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bd7d10c-c7c6-4055-ad7d-3eae8921c677"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13238"
+ ],
+ "x-ms-correlation-request-id": [
+ "d45f097a-689b-4f6d-8a0b-c0c82b87096b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:d45f097a-689b-4f6d-8a0b-c0c82b87096b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a68e7d98-d309-4d60-b80d-b81f19c59282"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13237"
+ ],
+ "x-ms-correlation-request-id": [
+ "35e3804b-4802-4fa0-b692-ecfcad038375"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:35e3804b-4802-4fa0-b692-ecfcad038375"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "357"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6bbd3fc6-f2c0-4df2-a7d7-67fdf51fb83e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13236"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2c30b34-f8d6-4ff8-81d0-f0afb51d298e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:d2c30b34-f8d6-4ff8-81d0-f0afb51d298e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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",
+ "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/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": [
+ "333"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a79cb18-04c6-4bbc-aa23-77d024bf132e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13235"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f6bb229-60c5-437c-9767-985a69f90d7e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:2f6bb229-60c5-437c-9767-985a69f90d7e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "618"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e319519f-e76e-408c-9546-be47f58c6ed7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13234"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf528d0e-3aa4-449e-a630-9508599f28a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212547Z:cf528d0e-3aa4-449e-a630-9508599f28a1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b3f6f0e-5641-4905-b2d6-5a46a451b619"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13233"
+ ],
+ "x-ms-correlation-request-id": [
+ "3191b995-879e-4bdd-8d43-6a01a1baaa92"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:3191b995-879e-4bdd-8d43-6a01a1baaa92"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "657"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b99621cd-207d-44d9-808c-7a6e0da1c9ef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13232"
+ ],
+ "x-ms-correlation-request-id": [
+ "40edf3f5-0603-423a-a4e4-f6705945cc61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:40edf3f5-0603-423a-a4e4-f6705945cc61"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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==",
+ "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/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": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7b88aad2-6810-45f4-823c-c58f71674377"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13231"
+ ],
+ "x-ms-correlation-request-id": [
+ "04eb6d7a-d6a9-4268-bf1f-1fbf9d83402f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:04eb6d7a-d6a9-4268-bf1f-1fbf9d83402f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "566"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bc9f5cf4-f8e7-4f4b-8a34-cf5c5ce32c41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13230"
+ ],
+ "x-ms-correlation-request-id": [
+ "14ab5fc4-5910-49cf-b8ff-bfcd00ffcca5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:14ab5fc4-5910-49cf-b8ff-bfcd00ffcca5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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==",
+ "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/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": [
+ "313"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f9dd98d-f3c4-4ca7-9fe0-f93900c930d0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13229"
+ ],
+ "x-ms-correlation-request-id": [
+ "776b3fa7-c748-42e4-9459-493ce5107b4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:776b3fa7-c748-42e4-9459-493ce5107b4f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:47 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "576"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5351d5e1-c124-49a9-8216-79f1f96b3043"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13228"
+ ],
+ "x-ms-correlation-request-id": [
+ "063a5419-28b7-4c64-82e3-c24a38d5621f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:063a5419-28b7-4c64-82e3-c24a38d5621f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "233"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39b11fa8-2d1d-41bd-b20f-39193dadb989"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13227"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c4d2c2f-e475-45a4-9c72-114d90b0b5ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:5c4d2c2f-e475-45a4-9c72-114d90b0b5ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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=",
+ "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\": \"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]",
+ "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": [
+ "b40555c5-d0d8-4967-9680-5123098773bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13226"
+ ],
+ "x-ms-correlation-request-id": [
+ "924f89e8-0810-4300-91f3-7c9db7026e99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:924f89e8-0810-4300-91f3-7c9db7026e99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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",
+ "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/infostrat/ArtifactTypes/VMImage/Offers/portvue/Skus/infostratportvuev1/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7362ffd4-26a3-4d8b-8e43-6f5f3b8dee76"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13225"
+ ],
+ "x-ms-correlation-request-id": [
+ "f23ac5a4-db92-4fff-a090-e0640dae4cce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:f23ac5a4-db92-4fff-a090-e0640dae4cce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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",
+ "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\": \"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}",
+ "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": [
+ "64d22452-717c-4725-817f-67e7ea5c613a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13224"
+ ],
+ "x-ms-correlation-request-id": [
+ "13dceab2-e9d4-4585-95d1-5cb337122905"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212548Z:13dceab2-e9d4-4585-95d1-5cb337122905"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "613f03fa-a61a-4ed7-9cf8-45c80f795548"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13223"
+ ],
+ "x-ms-correlation-request-id": [
+ "561b2583-3944-4f00-b36f-c1835a5f6199"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:561b2583-3944-4f00-b36f-c1835a5f6199"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0d31a37d-e7d2-44fe-84e9-2cb50f07eaec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13222"
+ ],
+ "x-ms-correlation-request-id": [
+ "e002498e-3769-42d1-8ab4-10601e857514"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:e002498e-3769-42d1-8ab4-10601e857514"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0e39c6fb-006f-4e1a-96a8-b88ee2d1c446"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13221"
+ ],
+ "x-ms-correlation-request-id": [
+ "f2636263-72f7-4d90-817e-312016823d88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:f2636263-72f7-4d90-817e-312016823d88"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d39df89e-314c-43e2-8b82-84c13a950f02"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13220"
+ ],
+ "x-ms-correlation-request-id": [
+ "e21ddffe-8d44-41d1-b912-7ddc1a439dcf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:e21ddffe-8d44-41d1-b912-7ddc1a439dcf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f46a9540-7a6a-486d-9f47-c1c205664ba7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13219"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d394658-d764-4ba2-9a99-b5e65fa8d49e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:7d394658-d764-4ba2-9a99-b5e65fa8d49e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7817020f-e565-4890-8f06-90214f9075a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13218"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0adb2e7-f32e-4790-a063-0269383a96cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:a0adb2e7-f32e-4790-a063-0269383a96cf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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",
+ "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/iquest/ArtifactTypes/VMImage/Offers/meeting-rooms/Skus/enterprise-byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5d4b5250-e629-40a1-8eb4-1205deb9fdc1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13217"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc590a80-30c3-4d7f-ba27-0dd52af562b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:bc590a80-30c3-4d7f-ba27-0dd52af562b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f652a86-241b-4192-9398-c8f7c7faf43d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13216"
+ ],
+ "x-ms-correlation-request-id": [
+ "0111b0c4-be27-4715-b20f-5640aedba74f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:0111b0c4-be27-4715-b20f-5640aedba74f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1106459e-f4f6-434a-9f26-c835d16d6bf3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13215"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4acbdeb-8a17-4909-9c8b-556fa2b9e1bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212549Z:d4acbdeb-8a17-4909-9c8b-556fa2b9e1bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae4c2cae-f994-404e-8e0c-3ade99fd4dcf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13214"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f987365-4cb5-4f61-8c05-1395ef514295"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:2f987365-4cb5-4f61-8c05-1395ef514295"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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==",
+ "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/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": [
+ "292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fd01dc4-a4c7-47be-ba4f-ee7400b5e6ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13213"
+ ],
+ "x-ms-correlation-request-id": [
+ "64fe1a6b-4f58-49b1-a3ce-57ea52f73466"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:64fe1a6b-4f58-49b1-a3ce-57ea52f73466"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "534"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b4836040-8b97-4b71-900f-49b54c07b767"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13212"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2512e7e-43e1-48ed-8e77-519d2c718600"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:d2512e7e-43e1-48ed-8e77-519d2c718600"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "610d1692-b1f1-4c18-9fd4-5c8b61e91f54"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13211"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7ee8484-3bdb-4f90-873d-0fbecebb57f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:e7ee8484-3bdb-4f90-873d-0fbecebb57f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:49 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d434460f-34fc-4b4f-9172-d2331b229aaa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13210"
+ ],
+ "x-ms-correlation-request-id": [
+ "d474bdd7-a316-42d1-b19f-7433ca530768"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:d474bdd7-a316-42d1-b19f-7433ca530768"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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",
+ "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/jelastic/ArtifactTypes/VMImage/Offers/jelastic-hybrid-paas-standard/Skus/jelastic_azure_hybrid_basic/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4a8717c2-6466-46cb-a3b3-ba37d31249df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13209"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d7d0251-dd51-4653-b041-055a791feb27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:5d7d0251-dd51-4653-b041-055a791feb27"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "550"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e35952a9-fed9-46f3-babe-7e6c1a2b1e85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13208"
+ ],
+ "x-ms-correlation-request-id": [
+ "4eadd49a-4e21-467a-8154-c7322c56ef08"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:4eadd49a-4e21-467a-8154-c7322c56ef08"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1533d5d-32f7-484c-a739-e405ee0bea05"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13207"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a91e29b-5863-4dd2-847c-4ee237732648"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212550Z:2a91e29b-5863-4dd2-847c-4ee237732648"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e174de8c-cd97-4e65-afc6-d3532dc72d32"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13206"
+ ],
+ "x-ms-correlation-request-id": [
+ "0843088a-3144-4122-8ae1-f6934b25fb4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:0843088a-3144-4122-8ae1-f6934b25fb4c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1bd793ef-b71d-4d0f-b3bc-242c1e231764"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13205"
+ ],
+ "x-ms-correlation-request-id": [
+ "b079a676-44f0-41a9-9ae9-1818fd4e48d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:b079a676-44f0-41a9-9ae9-1818fd4e48d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62900e77-3ddd-49e1-9150-7553f3ecbe54"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13204"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c279488-9ff2-4f89-8192-867aee55ee61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:7c279488-9ff2-4f89-8192-867aee55ee61"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04a6ed41-d927-4eca-8a5f-d8040fbc0334"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13203"
+ ],
+ "x-ms-correlation-request-id": [
+ "b595c649-fa86-4961-b81b-0b0e64b5b44d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:b595c649-fa86-4961-b81b-0b0e64b5b44d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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==",
+ "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\": \"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}",
+ "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": [
+ "15a911a5-e2e8-40e7-a46a-dac5ce001fd4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13202"
+ ],
+ "x-ms-correlation-request-id": [
+ "46bb968b-b548-4ee8-bdf6-bd352ea207dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:46bb968b-b548-4ee8-bdf6-bd352ea207dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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",
+ "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\": \"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]",
+ "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": [
+ "67e95e6d-1ced-4024-9c89-45650225e876"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13201"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ed9ab39-fee6-405d-9829-4463136222dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:4ed9ab39-fee6-405d-9829-4463136222dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:50 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f00da7d3-c8ce-4563-abf8-93df5af46d04"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13200"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ced48fd-8ebc-43aa-80ee-f32fd8cd57cb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:3ced48fd-8ebc-43aa-80ee-f32fd8cd57cb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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",
+ "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\": \"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]",
+ "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": [
+ "7ec58aea-50d7-4664-9fa5-ed2cf6ed58c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13199"
+ ],
+ "x-ms-correlation-request-id": [
+ "f78921d2-7065-4fce-88e0-f65ef0a933ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:f78921d2-7065-4fce-88e0-f65ef0a933ac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3dbbb95-fdfa-4e7f-9a60-0640f618589d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13198"
+ ],
+ "x-ms-correlation-request-id": [
+ "eee858c7-6d71-4722-9fe2-f9418798954b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:eee858c7-6d71-4722-9fe2-f9418798954b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21bffce9-6ac3-425d-8233-605c92895a7c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13197"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc8234db-b42e-440c-95f8-c0e2adc7feca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:dc8234db-b42e-440c-95f8-c0e2adc7feca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0e6fd6cc-12f3-4fc7-9b9b-e2d83e05d6e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13196"
+ ],
+ "x-ms-correlation-request-id": [
+ "adcd0ca8-8c91-45b9-be59-b23bbb75399e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212551Z:adcd0ca8-8c91-45b9-be59-b23bbb75399e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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",
+ "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\": \"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]",
+ "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": [
+ "6fc50ea2-870b-415e-b953-ece73f43d101"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13195"
+ ],
+ "x-ms-correlation-request-id": [
+ "caa0f65f-6414-441e-8f89-4bc4667627a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:caa0f65f-6414-441e-8f89-4bc4667627a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "072e7d09-8987-4fdb-bca0-92bec5092513"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13194"
+ ],
+ "x-ms-correlation-request-id": [
+ "90d776de-e99b-4a99-9f9f-46e16dcf41e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:90d776de-e99b-4a99-9f9f-46e16dcf41e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4d64c4a-9348-41e9-a821-0ddab39b17c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13193"
+ ],
+ "x-ms-correlation-request-id": [
+ "33a01e6a-f3ea-4ed5-a910-5674f76aba00"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:33a01e6a-f3ea-4ed5-a910-5674f76aba00"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "792"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "87c37525-8cf6-4850-963a-59a3e64769dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13192"
+ ],
+ "x-ms-correlation-request-id": [
+ "f00f8f75-0f2a-44b7-94fb-41a2141c40ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:f00f8f75-0f2a-44b7-94fb-41a2141c40ef"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "82f0fc83-43b5-4f55-8227-2a81e0d84b44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13191"
+ ],
+ "x-ms-correlation-request-id": [
+ "7df00f03-41a9-4149-9bcd-e3d72871728f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:7df00f03-41a9-4149-9bcd-e3d72871728f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cad52bca-d08b-4fa5-b698-0ee2d42edc90"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13190"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa818f61-7070-4d82-b15f-b85ada1f776d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:fa818f61-7070-4d82-b15f-b85ada1f776d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9641d02b-10f7-4ab7-ae28-ec219f7a18a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13189"
+ ],
+ "x-ms-correlation-request-id": [
+ "ceea6171-ac26-484b-8ecb-ddd01d862fbe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:ceea6171-ac26-484b-8ecb-ddd01d862fbe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c8a43b4-5635-4df0-b138-41e210318591"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13188"
+ ],
+ "x-ms-correlation-request-id": [
+ "13413052-c92a-4cf7-8092-768ea1f52fb9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:13413052-c92a-4cf7-8092-768ea1f52fb9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eae3fa0f-f259-439f-b57f-a382fe68e9ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13187"
+ ],
+ "x-ms-correlation-request-id": [
+ "bde54be6-6b6b-4bca-9a4c-508dd14497af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:bde54be6-6b6b-4bca-9a4c-508dd14497af"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4036fe0c-b159-4e1e-a1a5-7e6fafe05fa6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13186"
+ ],
+ "x-ms-correlation-request-id": [
+ "eece8057-f4cc-4d78-b712-5f9dabb56aac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212552Z:eece8057-f4cc-4d78-b712-5f9dabb56aac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a13c2566-94ba-459c-ad77-57e693bc21cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13185"
+ ],
+ "x-ms-correlation-request-id": [
+ "dabfcd4d-41d5-4c41-bdf7-89c6af307588"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:dabfcd4d-41d5-4c41-bdf7-89c6af307588"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "565"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "582a7389-1223-4e4c-99d8-1d169c05651c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13184"
+ ],
+ "x-ms-correlation-request-id": [
+ "91c54481-0fa6-45d7-99bf-173fa6a7011f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:91c54481-0fa6-45d7-99bf-173fa6a7011f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f130865-f1f4-4f7e-a94d-d6275f2cf65c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13183"
+ ],
+ "x-ms-correlation-request-id": [
+ "49e2da53-4872-44bd-98e2-46d1af08f295"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:49e2da53-4872-44bd-98e2-46d1af08f295"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "498"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6040a5fd-9174-4a77-aa4b-8cff6a02be92"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13182"
+ ],
+ "x-ms-correlation-request-id": [
+ "549234f1-9ea4-4243-88d0-173d08085795"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:549234f1-9ea4-4243-88d0-173d08085795"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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.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]",
+ "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": [
+ "b4fb6078-d3be-4fa9-837b-7e882af22c25"
+ ],
+ "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": [
+ "c76da5d9-8af8-4407-9419-82e1af213ea1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:c76da5d9-8af8-4407-9419-82e1af213ea1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9f70cf0e-9577-4704-8d8a-4cbb0b89fae3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13180"
+ ],
+ "x-ms-correlation-request-id": [
+ "727ca1ba-21ea-472f-8000-0f6810da4a57"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:727ca1ba-21ea-472f-8000-0f6810da4a57"
+ ],
+ "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?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "767"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc45091c-7362-4c4a-addb-73c699f10093"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13179"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ceea260-b434-49a6-908d-a82808cc31f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:5ceea260-b434-49a6-908d-a82808cc31f8"
+ ],
+ "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/kaspersky_secure_mail_gateway/skus?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXM/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\": \"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]",
+ "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": [
+ "36e81c13-9e2d-4b2e-9bd8-2a707e99a6eb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13178"
+ ],
+ "x-ms-correlation-request-id": [
+ "3738ff38-efed-4c8a-a877-f769ff1b10f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:3738ff38-efed-4c8a-a877-f769ff1b10f5"
+ ],
+ "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/kaspersky_secure_mail_gateway/skus/ksg/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7244066-a33d-44ce-a528-d21bbafb48ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13177"
+ ],
+ "x-ms-correlation-request-id": [
+ "65b30297-4c16-4dcc-b2e2-b26d37b782d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212553Z:65b30297-4c16-4dcc-b2e2-b26d37b782d9"
+ ],
+ "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/kaspersky_secure_mail_gateway/skus/ksg/versions/1.0.67?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thc3BlcnNreV9zZWN1cmVfbWFpbF9nYXRld2F5L3NrdXMva3NnL3ZlcnNpb25zLzEuMC42Nz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b021d1f-3909-436f-9b5a-cc1bf358a9e5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "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"
+ ],
+ "x-ms-correlation-request-id": [
+ "cda663c4-f989-4f1f-9bc7-0f980d276c4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:cda663c4-f989-4f1f-9bc7-0f980d276c4c"
+ ],
+ "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_wsee/skus?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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_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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a42bc2bf-1771-4105-9d11-d93a22d59c64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13172"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1c525ae-48cb-4c00-8e89-dfc8bc4bfecb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:c1c525ae-48cb-4c00-8e89-dfc8bc4bfecb"
+ ],
+ "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_wsee/skus/kav_for_wsee/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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_wsee/Skus/kav_for_wsee/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7b35765f-f79f-4030-9c32-d89e325d5bea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13171"
+ ],
+ "x-ms-correlation-request-id": [
+ "254646da-67f3-4089-8128-20d2e908192d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:254646da-67f3-4089-8128-20d2e908192d"
+ ],
+ "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_wsee/skus/kav_for_wsee/versions/1.0.0?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMva2FzcGVyc2t5X2xhYi9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzL2thdl9mb3Jfd3NlZS9za3VzL2thdl9mb3Jfd3NlZS92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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_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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "498"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5905233-4264-4595-ae48-f7aa55391f89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13170"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc4beb31-7f08-4036-b7ee-764a26d57182"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:fc4beb31-7f08-4036-b7ee-764a26d57182"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "236"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c2e62a8-c00c-491d-ae7c-1ec6d239ae5a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13169"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfc34ec0-3617-4b28-ab3f-fbd376470726"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:bfc34ec0-3617-4b28-ab3f-fbd376470726"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "397500f8-8c2f-48f7-a888-8d7c45cc2bfd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13168"
+ ],
+ "x-ms-correlation-request-id": [
+ "72ca950c-bc82-47ab-a05a-8025310298d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:72ca950c-bc82-47ab-a05a-8025310298d2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "79c7fafb-cb17-4ebb-bfa7-ef1cf7a01a46"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13167"
+ ],
+ "x-ms-correlation-request-id": [
+ "f35f9ad0-2c88-4373-bae2-d3b3ea33d7c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212554Z:f35f9ad0-2c88-4373-bae2-d3b3ea33d7c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0acfd45a-f03d-47b6-997f-1fc595d735e2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13166"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dfdbe04-47af-4768-9403-3d841ece0c93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:4dfdbe04-47af-4768-9403-3d841ece0c93"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b9c03ef4-a923-4ef2-9bc4-28e5ed203507"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13165"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d96f7e4-0df5-4e7b-b4bb-c5006984236c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:9d96f7e4-0df5-4e7b-b4bb-c5006984236c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9416ab39-69db-410f-8028-1eacc1b29878"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13164"
+ ],
+ "x-ms-correlation-request-id": [
+ "f441edb3-07ba-49d4-bc7f-0aa0fb311f61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:f441edb3-07ba-49d4-bc7f-0aa0fb311f61"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39af06c7-ba8e-4851-8224-00d8ec8835f4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13163"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bccf292-d502-401b-869e-610063076af4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:7bccf292-d502-401b-869e-610063076af4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "962d54c9-eb2d-4437-b6bd-7c981c0c1f68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13162"
+ ],
+ "x-ms-correlation-request-id": [
+ "b416edb1-733c-49ff-bfdd-4dc747042c0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:b416edb1-733c-49ff-bfdd-4dc747042c0f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2cd1aebd-4936-49e8-a6de-02fd6f6fb51b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13161"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cc28e63-0a15-4216-8ce3-1a3ed8d512e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:7cc28e63-0a15-4216-8ce3-1a3ed8d512e1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:54 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c14ca3f6-d1f7-4bbc-8cc6-7be43fccf0c7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13160"
+ ],
+ "x-ms-correlation-request-id": [
+ "59d87b2a-d9cf-42ea-9400-051259235813"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:59d87b2a-d9cf-42ea-9400-051259235813"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b40568b-20d5-49dc-8a15-7925252eac01"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13159"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb64f19e-27af-4c0d-b23d-15bd9bdae7d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:bb64f19e-27af-4c0d-b23d-15bd9bdae7d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d0cf1a0-1041-4967-a6f3-749316ce0e3b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13158"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b620c53-ea6b-4151-9429-05e8ec70d7d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:9b620c53-ea6b-4151-9429-05e8ec70d7d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "248"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5342c405-2f5e-4896-909f-23d3e3ac88a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13157"
+ ],
+ "x-ms-correlation-request-id": [
+ "e93eacf6-e79d-4b24-b093-579e2995cc71"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212555Z:e93eacf6-e79d-4b24-b093-579e2995cc71"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "250"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b67897df-069a-4095-bfa1-0728f7cba36a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13156"
+ ],
+ "x-ms-correlation-request-id": [
+ "10a909e6-4f51-4956-a783-0143a25d862e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:10a909e6-4f51-4956-a783-0143a25d862e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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=",
+ "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/le/ArtifactTypes/VMImage/Offers/logentries-datahub/Skus/azuredh/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a23d550-3b6f-467b-91e4-0a8a41776b68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13155"
+ ],
+ "x-ms-correlation-request-id": [
+ "26e8810a-2990-4c8b-a624-6209a6dde5bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:26e8810a-2990-4c8b-a624-6209a6dde5bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "23f30ead-5c36-4aea-941e-b07d68550682"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13154"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b001fd2-a696-4bb0-88db-9899e112032a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:2b001fd2-a696-4bb0-88db-9899e112032a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:55 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d906a05b-10fa-4339-b865-5e97ee2d2c53"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13153"
+ ],
+ "x-ms-correlation-request-id": [
+ "54cdb91d-1e56-4881-b1d0-1daebe3b73e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:54cdb91d-1e56-4881-b1d0-1daebe3b73e4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a2d1cc7b-883e-4266-b8d1-51c2b2cc40e1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13152"
+ ],
+ "x-ms-correlation-request-id": [
+ "af38dba8-02bc-4b72-9bcc-6fb25bc8453b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:af38dba8-02bc-4b72-9bcc-6fb25bc8453b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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=",
+ "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/lieberlieber/ArtifactTypes/VMImage/Offers/lieberlieber-web-collaborator/Skus/llweb4ea01/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4eac9820-8364-4a1d-8a22-2193cd9c2ce1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13151"
+ ],
+ "x-ms-correlation-request-id": [
+ "de336988-aba5-48ac-8446-cc45c3d8a8b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:de336988-aba5-48ac-8446-cc45c3d8a8b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "526"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0a574cc4-1422-474c-9853-768c7ec00234"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13150"
+ ],
+ "x-ms-correlation-request-id": [
+ "e82e7f2d-e7f0-49ba-a2c4-5074d966f726"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212556Z:e82e7f2d-e7f0-49ba-a2c4-5074d966f726"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7d4f7f8-1c1a-4172-8caf-18231da242c7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13149"
+ ],
+ "x-ms-correlation-request-id": [
+ "1eaa7606-71a5-4a45-bc86-f0c349b4b121"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:1eaa7606-71a5-4a45-bc86-f0c349b4b121"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8eb5d28e-0a66-4e47-af19-a61bd2eed6f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13148"
+ ],
+ "x-ms-correlation-request-id": [
+ "81a7cf3e-4ee5-4ccf-9121-77838f1d88fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:81a7cf3e-4ee5-4ccf-9121-77838f1d88fa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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",
+ "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\": \"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]",
+ "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": [
+ "220f8650-5bab-4e37-99e0-9626c4046e39"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13147"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2ddd856-c1ff-46a7-902f-e55476b21e3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:c2ddd856-c1ff-46a7-902f-e55476b21e3b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba873434-e2f9-487b-8a83-0a8832b2d6cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13146"
+ ],
+ "x-ms-correlation-request-id": [
+ "50ac6ed6-f3e4-4d55-8dca-5291000dbc25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:50ac6ed6-f3e4-4d55-8dca-5291000dbc25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d1e6832-11c7-4564-898d-833ffeaa35db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13145"
+ ],
+ "x-ms-correlation-request-id": [
+ "60d55148-bf1f-42d8-b72c-73068e9c9589"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:60d55148-bf1f-42d8-b72c-73068e9c9589"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc2143ee-73ae-48f0-9e93-b8e942f5437e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13144"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd467648-1ed5-471f-b519-8f3e53a21631"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:bd467648-1ed5-471f-b519-8f3e53a21631"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:56 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==",
+ "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/literatu/ArtifactTypes/VMImage/Offers/literatu/Skus/lit-az-vir/Versions/1.0.0\"\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": [
+ "f10b339c-0329-4d01-8dde-18061a4f44d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13143"
+ ],
+ "x-ms-correlation-request-id": [
+ "7954afc7-2f13-4b38-a922-ca232d8be18e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:7954afc7-2f13-4b38-a922-ca232d8be18e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "474"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "42ac840b-a8ba-42c3-9314-069a90de95b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13142"
+ ],
+ "x-ms-correlation-request-id": [
+ "e799afbd-82d4-42da-9f47-15c6eff0ab82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:e799afbd-82d4-42da-9f47-15c6eff0ab82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95a7b4b1-b837-40d6-8091-4a9f9d39bd5f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13141"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a740c31-e0aa-43ee-9684-bf9d63ad9137"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212557Z:1a740c31-e0aa-43ee-9684-bf9d63ad9137"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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=",
+ "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\": \"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]",
+ "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": [
+ "44ff6d74-05b4-49eb-894f-7526ce6ae403"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13140"
+ ],
+ "x-ms-correlation-request-id": [
+ "549a9ae1-366d-4c34-a97b-6b4b37073567"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:549a9ae1-366d-4c34-a97b-6b4b37073567"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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==",
+ "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/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": [
+ "310"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5100a59-9dca-40e5-bf3f-c2fc2e9ce4c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13139"
+ ],
+ "x-ms-correlation-request-id": [
+ "06506d19-e707-40d4-99d8-b9ba00c395b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:06506d19-e707-40d4-99d8-b9ba00c395b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "570"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "747ea6c0-c7f9-4824-8f88-7c82775a781c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13138"
+ ],
+ "x-ms-correlation-request-id": [
+ "3367dcc0-fa9c-4cd3-b796-71b7af15f238"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:3367dcc0-fa9c-4cd3-b796-71b7af15f238"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "756"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6a51f0a4-329f-429f-b28b-e4513fdad384"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13137"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec97505d-f34f-4065-a848-d3627cbac2d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:ec97505d-f34f-4065-a848-d3627cbac2d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2f3225e-5392-41aa-a669-ba471f7b1543"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13136"
+ ],
+ "x-ms-correlation-request-id": [
+ "23dc33b6-205e-47e5-bc59-e1b7a476c3f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:23dc33b6-205e-47e5-bc59-e1b7a476c3f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:57 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==",
+ "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.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]",
+ "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": [
+ "5cdf28ab-ecd8-4eed-96a7-f97664648b54"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13135"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e230531-8cd8-41d4-8e10-6cfcab545fc1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:0e230531-8cd8-41d4-8e10-6cfcab545fc1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19809fb5-3026-4e97-9304-ccaf224c432e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13134"
+ ],
+ "x-ms-correlation-request-id": [
+ "b324ee35-df3f-40c6-8a92-698e4d1a72a3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212558Z:b324ee35-df3f-40c6-8a92-698e4d1a72a3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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==",
+ "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\": \"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]",
+ "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": [
+ "4ffb6e4e-4a9d-48a5-a716-e6769c9710ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13133"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a90377e-9f17-40e9-9978-9da9cce62e1a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:9a90377e-9f17-40e9-9978-9da9cce62e1a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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=",
+ "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/logi-analytics/ArtifactTypes/VMImage/Offers/logi-vision-1/Skus/logi-vision-hourly/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e69293bd-1f2c-4630-8ef5-8cd6a6e7b14c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13132"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a3fbddf-e2b9-4b31-80ed-8ba9dd0a2526"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:8a3fbddf-e2b9-4b31-80ed-8ba9dd0a2526"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "17318982-93ed-4588-bedb-7e0c59866cd0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13131"
+ ],
+ "x-ms-correlation-request-id": [
+ "25aa1bda-2a01-43e3-a5c7-82c7222f2907"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:25aa1bda-2a01-43e3-a5c7-82c7222f2907"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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=",
+ "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\": \"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]",
+ "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": [
+ "2dcdfe30-1cf9-4d6e-990a-365fbbe752d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13130"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cd5f850-f90a-45a3-8d9b-6e1b723ec522"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:9cd5f850-f90a-45a3-8d9b-6e1b723ec522"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76d26fc2-8caa-4873-9b2d-c7c9ad7fef4c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13129"
+ ],
+ "x-ms-correlation-request-id": [
+ "44cefb3e-f2d0-49f3-8516-890850d9aae2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:44cefb3e-f2d0-49f3-8516-890850d9aae2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c9d31ab-3ab5-43e0-9b34-1f7adf30c980"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13128"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d9d44f0-63f1-4add-86ac-f37cf11a861f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:9d9d44f0-63f1-4add-86ac-f37cf11a861f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:58 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64a5a97d-6aa7-4a61-9d19-db9afc32b0ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13127"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb649262-1a1b-4061-8243-c77546039de1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:eb649262-1a1b-4061-8243-c77546039de1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1147"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9f846cb2-3792-4e7b-b1cd-118f9e6514bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13126"
+ ],
+ "x-ms-correlation-request-id": [
+ "f511e863-7d49-40c8-9e9c-94e91dd52403"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:f511e863-7d49-40c8-9e9c-94e91dd52403"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c23861e-2b3d-4cf5-a891-e5fcb6cb523c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13125"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3d34c2b-d32b-43ee-9de4-0c6acb69df85"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212559Z:e3d34c2b-d32b-43ee-9de4-0c6acb69df85"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "618c2c06-3ae0-47b3-87cf-1db614e9fcd9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13124"
+ ],
+ "x-ms-correlation-request-id": [
+ "ddee3265-4996-40b0-a2a0-372850fbba20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:ddee3265-4996-40b0-a2a0-372850fbba20"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1dc805c7-fcec-4b31-9734-66006cc7ca96"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13123"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7fe8c16-a5ba-4cea-90ae-db57a5dbb417"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:d7fe8c16-a5ba-4cea-90ae-db57a5dbb417"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "540"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3f98683d-521f-4500-abbc-3d883c56a891"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13122"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0cd0d69-1d3b-4072-9fcc-7812f85fb18d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:f0cd0d69-1d3b-4072-9fcc-7812f85fb18d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6eabecbf-5c27-4136-a3fc-87bfc80879b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13121"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbfde45e-3db3-45ab-935b-39eadcf28c5b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:fbfde45e-3db3-45ab-935b-39eadcf28c5b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "538"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3533d67-6717-41f8-9b52-04e1663d6bb4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13120"
+ ],
+ "x-ms-correlation-request-id": [
+ "e9e6bc04-5806-4214-80e4-8fbdbd4a34b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:e9e6bc04-5806-4214-80e4-8fbdbd4a34b6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e00daba-c32b-448c-8bfe-3bd46e177114"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13119"
+ ],
+ "x-ms-correlation-request-id": [
+ "ab0eb141-a487-4448-97d0-06294f787116"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:ab0eb141-a487-4448-97d0-06294f787116"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d019cf59-a4f6-4b1e-af43-240fcf6cc238"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13118"
+ ],
+ "x-ms-correlation-request-id": [
+ "643eb344-4a59-4a2e-a483-f53624e1166b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:643eb344-4a59-4a2e-a483-f53624e1166b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:25:59 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",
+ "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\": \"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]",
+ "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": [
+ "a2883ada-0b3b-4874-aabd-485919014196"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13117"
+ ],
+ "x-ms-correlation-request-id": [
+ "959ca117-5d56-4114-aa8b-6480a70f04f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:959ca117-5d56-4114-aa8b-6480a70f04f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f75a00a3-d8e8-414c-99bb-68a6826f8c6f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13116"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9f88263-d85d-4fc5-9262-b6a76b86eb10"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212600Z:f9f88263-d85d-4fc5-9262-b6a76b86eb10"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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==",
+ "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/logtrust/ArtifactTypes/VMImage/Offers/logtrust-log-management/Skus/lmrelay/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c5ce191f-a4c1-4fc7-a745-c1bee6f23551"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13115"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d227bee-4009-4d5f-af5b-b4bc66a861eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:7d227bee-4009-4d5f-af5b-b4bc66a861eb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "498"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "527596da-7325-4eaa-817b-be9cb938f549"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13114"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a895fdd-0107-4d20-8ca4-03a71b083522"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:4a895fdd-0107-4d20-8ca4-03a71b083522"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1b7ecaf0-d3fd-46e1-98ba-c1ec69a3800e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13113"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c24fe5b-8be7-443c-bdc1-76d3ccd61e46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:4c24fe5b-8be7-443c-bdc1-76d3ccd61e46"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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=",
+ "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\": \"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]",
+ "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": [
+ "b38d25d2-24a9-46fa-ae26-12758c3f8eda"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13112"
+ ],
+ "x-ms-correlation-request-id": [
+ "bae55c5e-6d3b-4096-b0c2-73244db0a174"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:bae55c5e-6d3b-4096-b0c2-73244db0a174"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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",
+ "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/looker/ArtifactTypes/VMImage/Offers/looker-analytics-platform/Skus/looker-analytics-platform-sqldb-10users/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2a71bf3c-cb42-4748-857f-e40b07a5cd14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13111"
+ ],
+ "x-ms-correlation-request-id": [
+ "9907ac7b-eeb4-437d-ad49-75e60e9f4ea0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:9907ac7b-eeb4-437d-ad49-75e60e9f4ea0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab206977-3329-46af-b58e-a2a025b83a86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13110"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f3c2afc-daa9-4615-a6d6-09972c18de58"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:2f3c2afc-daa9-4615-a6d6-09972c18de58"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "add775bf-f99e-4652-a62f-99dfaca978e2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13109"
+ ],
+ "x-ms-correlation-request-id": [
+ "1aa59768-e0be-408c-bc30-cf8e5ebb0604"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:1aa59768-e0be-408c-bc30-cf8e5ebb0604"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:00 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "326"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "773f9659-59c7-46df-bf94-1086cd921f9b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13108"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ce45975-c5ed-4e5d-aa66-b7453b68754b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:4ce45975-c5ed-4e5d-aa66-b7453b68754b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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",
+ "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/magelia/ArtifactTypes/VMImage/Offers/magelia-webstore-professional/Skus/magelia-webstore-professional-edition/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "309"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4ac90ab-0e5a-4034-a512-c2ae85f1cdba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13107"
+ ],
+ "x-ms-correlation-request-id": [
+ "61f29e63-c4f2-4ca9-b186-cb68438eaa6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:61f29e63-c4f2-4ca9-b186-cb68438eaa6c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "570"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aa3de8d8-17eb-4909-abfd-a4ae9389ca60"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13106"
+ ],
+ "x-ms-correlation-request-id": [
+ "36a212d0-dda4-41f0-8694-15b55f81efad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212601Z:36a212d0-dda4-41f0-8694-15b55f81efad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "40a98886-05e4-49dc-aee0-d221c87edcc2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13105"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf3efc0c-a8db-4a90-83f9-0fa6d98ba742"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:bf3efc0c-a8db-4a90-83f9-0fa6d98ba742"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1ffab091-8d63-4bac-bd82-469cdff29920"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13104"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e896673-8023-47bb-bcfd-d54ddd80d9dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:0e896673-8023-47bb-bcfd-d54ddd80d9dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "56741cd6-abff-4890-8b43-50dbbf283815"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13103"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f3f8ac2-3519-448a-ab22-9c5fd16633ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:3f3f8ac2-3519-448a-ab22-9c5fd16633ef"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dc869fc3-0b94-44ba-ae8a-073f4dc28345"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13102"
+ ],
+ "x-ms-correlation-request-id": [
+ "55612ca0-99ed-44e5-a5e9-ac17b3d6900a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:55612ca0-99ed-44e5-a5e9-ac17b3d6900a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "adb37a04-c7a9-45f6-a24c-38640ea526c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13101"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4f24272-9f81-4e56-83b2-744a580f7f12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:f4f24272-9f81-4e56-83b2-744a580f7f12"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "fe713a03-0fe4-4894-a7bf-2cc5dc53e5ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13100"
+ ],
+ "x-ms-correlation-request-id": [
+ "62c354fc-ff1a-4149-b5f1-6b85f86eaa93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:62c354fc-ff1a-4149-b5f1-6b85f86eaa93"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "242"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd757c75-4160-448b-9d78-4bf7eab13567"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13099"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e11a939-0e5d-4e44-95cb-400a713cce41"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:5e11a939-0e5d-4e44-95cb-400a713cce41"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "103e884d-2136-49f5-8feb-8b0b117caf41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13098"
+ ],
+ "x-ms-correlation-request-id": [
+ "daa05731-b98f-416c-b910-25b57a771b85"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:daa05731-b98f-416c-b910-25b57a771b85"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:01 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5c9346d-e831-4f6b-9cb2-8d61421e7b84"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13097"
+ ],
+ "x-ms-correlation-request-id": [
+ "2debb483-21fc-4c77-9825-21f9576cb572"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:2debb483-21fc-4c77-9825-21f9576cb572"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "efd9ffe1-7b4b-433b-af7c-b7e5665c83ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13096"
+ ],
+ "x-ms-correlation-request-id": [
+ "a07443d0-99c0-4cbe-b6cc-74262dcd1d1f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212602Z:a07443d0-99c0-4cbe-b6cc-74262dcd1d1f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c7d31424-04f4-48e3-8afa-ba8ae19d2398"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13095"
+ ],
+ "x-ms-correlation-request-id": [
+ "36fe7077-d684-4546-8112-9cfba3b254f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:36fe7077-d684-4546-8112-9cfba3b254f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b3f9165b-dee2-41f5-a18d-21d9d74a6605"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13094"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dfe3e62-c4d2-4a11-8b06-45208131ac0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:4dfe3e62-c4d2-4a11-8b06-45208131ac0d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91ccc366-8202-4f73-a353-8ceb1c1f00e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13093"
+ ],
+ "x-ms-correlation-request-id": [
+ "99d1ae97-295a-440f-bed9-54b472e6ccb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:99d1ae97-295a-440f-bed9-54b472e6ccb3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "538"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af816515-ff85-41ee-b1b4-2838c3a70b43"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13092"
+ ],
+ "x-ms-correlation-request-id": [
+ "e09822da-9db5-402c-b968-d2fba316032f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:e09822da-9db5-402c-b968-d2fba316032f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7248ed32-f127-4c78-a807-58dd75fd009d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13091"
+ ],
+ "x-ms-correlation-request-id": [
+ "df29e9e4-268f-44f0-88db-dc1af4d7e27c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:df29e9e4-268f-44f0-88db-dc1af4d7e27c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "28866a30-da08-40d2-a1d7-6a71f78ae407"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13090"
+ ],
+ "x-ms-correlation-request-id": [
+ "92888e72-5846-4431-b6ec-42437f056785"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:92888e72-5846-4431-b6ec-42437f056785"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d16dae1-629e-42b7-a362-179f08eebb33"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13089"
+ ],
+ "x-ms-correlation-request-id": [
+ "79f8a1ed-3bf5-4e44-8ce5-d0c7054cb1f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:79f8a1ed-3bf5-4e44-8ce5-d0c7054cb1f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "499"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "924f4a70-456d-4ca5-8aad-691a5999fc7c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13088"
+ ],
+ "x-ms-correlation-request-id": [
+ "89d807b9-304a-4262-a375-062a78b7ebd3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:89d807b9-304a-4262-a375-062a78b7ebd3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "250"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1757f0bf-92f4-4856-9a28-642760ff222c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13087"
+ ],
+ "x-ms-correlation-request-id": [
+ "3205bb18-c124-4653-999f-75334ec74913"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:3205bb18-c124-4653-999f-75334ec74913"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "41d4fa98-a09d-4be2-9643-19b2b865b1f4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13086"
+ ],
+ "x-ms-correlation-request-id": [
+ "52e5937b-ab77-4f97-b767-b5035715c60f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212603Z:52e5937b-ab77-4f97-b767-b5035715c60f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c48f9802-c7ca-4a51-84ed-a48845946dea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13085"
+ ],
+ "x-ms-correlation-request-id": [
+ "14c20623-ac33-4f91-bee1-27e1845b0bf0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:14c20623-ac33-4f91-bee1-27e1845b0bf0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9a9afd85-9b34-4af3-8b3f-660056200ad8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13084"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3a96835-166a-491c-91f6-be229b8a88cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:a3a96835-166a-491c-91f6-be229b8a88cc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "31d7143b-7f67-4433-850b-c031d2f94e70"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13083"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b05443a-b3f3-458a-9d92-dde7de8716c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:2b05443a-b3f3-458a-9d92-dde7de8716c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2548dadc-f619-4fae-b7b7-a0e8a333770d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13082"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1f43766-1c36-44bd-b819-e7c137141492"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:c1f43766-1c36-44bd-b819-e7c137141492"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "3a9e0958-aad9-427a-a13a-1efcf91a0ee3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13081"
+ ],
+ "x-ms-correlation-request-id": [
+ "3afb54dc-7d3a-4a5e-8ee0-2b0455379257"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:3afb54dc-7d3a-4a5e-8ee0-2b0455379257"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19322619-d170-49dd-a719-e396591df591"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13080"
+ ],
+ "x-ms-correlation-request-id": [
+ "44792eae-ed84-4c50-b179-5d197cc5cafe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:44792eae-ed84-4c50-b179-5d197cc5cafe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "41c77399-1ffc-4955-9201-0f3c4ed8e93d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13079"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba715de7-8541-448e-9edb-475c7c09e025"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:ba715de7-8541-448e-9edb-475c7c09e025"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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/metavistech/ArtifactTypes/VMImage/Offers/metavis-office365-suite/Skus/mv-office365-ste-azure-1/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a513ac67-a8bf-49de-914f-ec1633d690e9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13078"
+ ],
+ "x-ms-correlation-request-id": [
+ "17051129-ae7c-4764-9570-c8487e8d1386"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:17051129-ae7c-4764-9570-c8487e8d1386"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:03 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "540"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1081777-5240-46bc-88f2-9981020455b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13077"
+ ],
+ "x-ms-correlation-request-id": [
+ "83f40ab2-6553-4673-ab27-f2af0418213f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212604Z:83f40ab2-6553-4673-ab27-f2af0418213f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0501c063-99ff-4ce3-88c8-d863a13cf761"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13076"
+ ],
+ "x-ms-correlation-request-id": [
+ "82154c12-6e94-4495-9674-ddcf1bdc6625"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:82154c12-6e94-4495-9674-ddcf1bdc6625"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "943"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a1c47889-29fd-47e7-9e99-fb5b0ea2903b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13075"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ed92b95-7cc7-4067-a292-4e0807682391"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:9ed92b95-7cc7-4067-a292-4e0807682391"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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=",
+ "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.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]",
+ "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": [
+ "957eedec-abac-44e7-8db1-4990699eb816"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13074"
+ ],
+ "x-ms-correlation-request-id": [
+ "233c677c-8f71-4ada-92fe-5e183d050e78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:233c677c-8f71-4ada-92fe-5e183d050e78"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f201442e-c9f4-4485-9e5f-e2322d918e86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13073"
+ ],
+ "x-ms-correlation-request-id": [
+ "e63c25bc-118e-4684-be72-c619c6fb898e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:e63c25bc-118e-4684-be72-c619c6fb898e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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=",
+ "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.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]",
+ "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": [
+ "633703be-99ee-4e1a-b3c2-851d52ff8cb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13072"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1c9d23b-1483-4d91-9c17-c695a0cd85ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:f1c9d23b-1483-4d91-9c17-c695a0cd85ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f779e92b-10c3-44a4-91cc-4bd4d5092c02"
+ ],
+ "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": [
+ "256033e1-3abf-4f40-a05d-9a48c064048e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:256033e1-3abf-4f40-a05d-9a48c064048e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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=",
+ "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.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]",
+ "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": [
+ "87957f92-27f6-434d-8d09-363734cbce3e"
+ ],
+ "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": [
+ "0c680459-0c02-4186-b74c-fae31695ebce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:0c680459-0c02-4186-b74c-fae31695ebce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d6f05a70-6025-45cd-809e-9a2608dd91bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13069"
+ ],
+ "x-ms-correlation-request-id": [
+ "43596f81-6870-44d0-b146-fb4bc7842fff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:43596f81-6870-44d0-b146-fb4bc7842fff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:04 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=",
+ "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.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]",
+ "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": [
+ "90ae61ed-a880-4693-8bb1-150df49392f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13068"
+ ],
+ "x-ms-correlation-request-id": [
+ "4933ab10-3963-43f9-b95c-6b89e15913dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:4933ab10-3963-43f9-b95c-6b89e15913dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2ae7bac5-3e5e-4f11-94d7-71dcd7a1ade7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13067"
+ ],
+ "x-ms-correlation-request-id": [
+ "7de406ad-a80c-41d8-9746-881870e74a7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212605Z:7de406ad-a80c-41d8-9746-881870e74a7f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2125"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "57fc926a-be4f-4bb8-99c0-f9b87f7220dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13066"
+ ],
+ "x-ms-correlation-request-id": [
+ "e02640c8-eba8-4b25-9781-2fcc441a6cb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:e02640c8-eba8-4b25-9781-2fcc441a6cb3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "708"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a447472-9acf-4224-8661-d93371bbefe3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13065"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa207db1-e98b-4349-8a94-c5cbcaf56fde"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:fa207db1-e98b-4349-8a94-c5cbcaf56fde"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_6/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3857c364-4c3d-4c0e-9966-ca096e7a02f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13064"
+ ],
+ "x-ms-correlation-request-id": [
+ "6793aefe-866a-450f-aa35-9cec2c3a3040"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:6793aefe-866a-450f-aa35-9cec2c3a3040"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "354"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec908cde-bad1-4628-bdc5-5e00e2b938bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13063"
+ ],
+ "x-ms-correlation-request-id": [
+ "5500e670-0532-4922-9ac2-28c99b958e12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:5500e670-0532-4922-9ac2-28c99b958e12"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_7/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "955095d2-5747-4cd3-8b08-e251b9bf40f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13062"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2daaab5-7666-4a58-b5cf-c6ab57b9f6d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:c2daaab5-7666-4a58-b5cf-c6ab57b9f6d6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "354"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "70b33592-ad55-40d7-9875-dc3a68183e6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13061"
+ ],
+ "x-ms-correlation-request-id": [
+ "978d0b93-2acf-42fc-a6a9-acdac4aa5256"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:978d0b93-2acf-42fc-a6a9-acdac4aa5256"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/JDK/Skus/JDK_8/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a13385d1-b38a-488f-9972-93dcd859aa96"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13060"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d268b26-1a99-4595-bf93-50081d9cf29d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:2d268b26-1a99-4595-bf93-50081d9cf29d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "354"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a525208b-102a-44e4-afd6-776804b57a1f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13059"
+ ],
+ "x-ms-correlation-request-id": [
+ "a3a0fa84-2b04-4210-8b97-f8579e52747b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:a3a0fa84-2b04-4210-8b97-f8579e52747b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "645"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "58ced673-b785-4d51-991f-cffc8acb37d4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13058"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fbaffcb-dc2d-4cf0-acc5-79aa02bbc423"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:3fbaffcb-dc2d-4cf0-acc5-79aa02bbc423"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:05 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=",
+ "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/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": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2c25d558-b2f5-4103-98f9-3e0af64f5538"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13057"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4fece63-0fb8-4707-aa35-a21488d23256"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212606Z:b4fece63-0fb8-4707-aa35-a21488d23256"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "409"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e05824ec-60e9-4322-bb36-58f607d2f089"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13056"
+ ],
+ "x-ms-correlation-request-id": [
+ "c021f93d-91e1-4aa7-935a-3818c576795a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:c021f93d-91e1-4aa7-935a-3818c576795a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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",
+ "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/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": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8c2ece25-f43f-425a-bd6d-99996d26719a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13055"
+ ],
+ "x-ms-correlation-request-id": [
+ "84b01b32-5bac-44e7-9f90-7b1a98c5662d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:84b01b32-5bac-44e7-9f90-7b1a98c5662d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "79e0cae2-9c7f-42a6-a627-b48198c726bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13054"
+ ],
+ "x-ms-correlation-request-id": [
+ "14348456-2fcf-4a2e-afc4-e26f5dbc7a7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:14348456-2fcf-4a2e-afc4-e26f5dbc7a7b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "793"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "016a8be1-9127-4501-aac0-deffcc52cf68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13053"
+ ],
+ "x-ms-correlation-request-id": [
+ "8711dca0-c723-43b8-a9d0-fefd788259bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:8711dca0-c723-43b8-a9d0-fefd788259bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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==",
+ "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/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": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f2b6998e-509d-4b4b-a938-da91a85d5252"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13052"
+ ],
+ "x-ms-correlation-request-id": [
+ "210af7f3-908c-480c-bb1c-e9b68deaa5ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:210af7f3-908c-480c-bb1c-e9b68deaa5ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "456"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8bec8d16-d472-4129-bcf0-758a2de98102"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13051"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c646a9c-9015-4291-af4e-db47259b37b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:8c646a9c-9015-4291-af4e-db47259b37b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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",
+ "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/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": [
+ "354"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04b28b39-9299-433a-9783-35199462a51c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13050"
+ ],
+ "x-ms-correlation-request-id": [
+ "238250fe-bc1d-473b-b0ab-f889cfa1b161"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:238250fe-bc1d-473b-b0ab-f889cfa1b161"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "455"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fe16548-7841-4541-8f1b-a04ae58b6140"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13049"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b98d8dc-8738-4094-99dc-78915f13ec32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:7b98d8dc-8738-4094-99dc-78915f13ec32"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "633"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb017bab-e1ba-4ed3-b880-f160f7fc02ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13048"
+ ],
+ "x-ms-correlation-request-id": [
+ "52821914-aa70-40ab-a9c4-abbb8cf687fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:52821914-aa70-40ab-a9c4-abbb8cf687fa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:06 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=",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Enterprise_Edition/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d4f4d33-1758-4a1c-b9cc-29d93f435d4a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13047"
+ ],
+ "x-ms-correlation-request-id": [
+ "d775620e-bee2-4394-b144-c1872f20e427"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212607Z:d775620e-bee2-4394-b144-c1872f20e427"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "403"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9faa0eab-a6a0-4637-894e-e9951a1e66d2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13046"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f603d03-64ab-4be5-822d-08a7f0351b82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:8f603d03-64ab-4be5-822d-08a7f0351b82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/Oracle_Database_12c/Skus/Oracle_Database_12c_Standard_Edition/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1ad4f86b-5085-47f4-a36c-89d711a898ca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13045"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e64ef1e-e1fc-4e35-8ac3-1a3b1651969e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:1e64ef1e-e1fc-4e35-8ac3-1a3b1651969e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e8ae51f-7016-4311-8cc6-9702fbd7aaf4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13044"
+ ],
+ "x-ms-correlation-request-id": [
+ "f40d6336-b0ed-4b8f-b82f-f5b7c309b0bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:f40d6336-b0ed-4b8f-b82f-f5b7c309b0bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "777"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "65b2c6c8-ece0-4c93-8ff6-4caa6afc32ea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13043"
+ ],
+ "x-ms-correlation-request-id": [
+ "72a9d5cf-b1e6-405b-bc0a-acb28fb68832"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:72a9d5cf-b1e6-405b-bc0a-acb28fb68832"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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=",
+ "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/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": [
+ "350"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8d893fa3-156b-4915-9c86-4412086d7aa0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13042"
+ ],
+ "x-ms-correlation-request-id": [
+ "cfb58d39-cfdd-4461-8706-557036efc262"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:cfb58d39-cfdd-4461-8706-557036efc262"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "451"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f0bdd40-74fe-42c1-9020-8151e585c8c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13041"
+ ],
+ "x-ms-correlation-request-id": [
+ "1921117b-daca-44e9-8518-40ecbdfe2a25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:1921117b-daca-44e9-8518-40ecbdfe2a25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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",
+ "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/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": [
+ "348"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "14466d92-1ccc-4b8f-8d3a-5dcb284642ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13040"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd7e68f7-c18b-4c72-b470-d15bbf346acc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:bd7e68f7-c18b-4c72-b470-d15bbf346acc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "449"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "249c8270-bb82-40bd-b43f-891535dda6ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13039"
+ ],
+ "x-ms-correlation-request-id": [
+ "c29735f4-99aa-4f58-9d59-8934d64cb1a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:c29735f4-99aa-4f58-9d59-8934d64cb1a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "681"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "188867bd-f173-4f80-928a-9109dad91855"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13038"
+ ],
+ "x-ms-correlation-request-id": [
+ "a6766b3b-8b46-49ca-a644-4d8aab0056e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:a6766b3b-8b46-49ca-a644-4d8aab0056e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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==",
+ "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/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": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19ccc41a-47b5-4a3c-bca5-ca46e56f7d0c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13037"
+ ],
+ "x-ms-correlation-request-id": [
+ "a13d2b02-0193-4fd7-a149-843b4fd4bb2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:a13d2b02-0193-4fd7-a149-843b4fd4bb2a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:07 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "417"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bab59966-b3bc-4d45-965f-6535e8cc1a51"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13036"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cddfd94-e1cd-477b-81ff-1566fb0d9911"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212608Z:6cddfd94-e1cd-477b-81ff-1566fb0d9911"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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=",
+ "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/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": [
+ "317"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2d65436-190d-437d-b9dc-66183713f641"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13035"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8622a25-df0f-454c-b0e5-0848342c70c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:d8622a25-df0f-454c-b0e5-0848342c70c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "418"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9870993c-1323-4b88-ae15-4d3fb6118c85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13034"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e3e0fb4-d2be-44ba-bec7-a31f4a7ed32a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:9e3e0fb4-d2be-44ba-bec7-a31f4a7ed32a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "675"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab0430f3-34da-4ef6-9586-4e5eaec01112"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13033"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3f71243-1db6-46e0-a96f-47926186b1d5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:d3f71243-1db6-46e0-a96f-47926186b1d5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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==",
+ "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/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": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c172e226-4a15-424b-aaeb-e406328e6353"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13032"
+ ],
+ "x-ms-correlation-request-id": [
+ "f818dd35-2b08-47b5-b61a-b617fc938cc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:f818dd35-2b08-47b5-b61a-b617fc938cc7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "417"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2b161806-bca8-41ee-aad0-d022e1c936f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13031"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5a6f2eb-da36-4e9f-834e-b8c2c6f675f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:c5a6f2eb-da36-4e9f-834e-b8c2c6f675f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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=",
+ "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/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": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5b790bd-c984-48fb-8c66-6c945be7af33"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13030"
+ ],
+ "x-ms-correlation-request-id": [
+ "86b89187-c5f7-435c-adac-648c552e060e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:86b89187-c5f7-435c-adac-648c552e060e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a05fdaa7-136c-4038-8449-2d2213f6dfa0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13029"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f8837b8-8d5f-4be6-88f0-a7246ca6597d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:6f8837b8-8d5f-4be6-88f0-a7246ca6597d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "571"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91ceb302-7e5e-472e-9148-1e413fb74f0e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13028"
+ ],
+ "x-ms-correlation-request-id": [
+ "d670486f-1472-4656-bfe5-9209833a8a71"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:d670486f-1472-4656-bfe5-9209833a8a71"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.7/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": [
+ "0cd69f68-b057-492c-85ab-de1f038c8303"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13027"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4aa000a-0660-43c6-859f-a8b4e6dca121"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:c4aa000a-0660-43c6-859f-a8b4e6dca121"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "765b128a-c215-4d32-b4d2-7d00a03688a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13026"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a7285ce-0abc-49d3-9be3-24067f8d196e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212609Z:6a7285ce-0abc-49d3-9be3-24067f8d196e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:08 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",
+ "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/Microsoft/ArtifactTypes/VMImage/Offers/Zulu_OpenJDK/Skus/Zulu_OpenJDK_package_v1.8/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": [
+ "4a40d31b-941e-437c-8c62-a5a2dd950f1b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13025"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0abc58b-9ad4-45b1-8905-46722be2294e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:f0abc58b-9ad4-45b1-8905-46722be2294e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8904c236-5e7c-4d6c-9fa8-57e3b68f1c9b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13024"
+ ],
+ "x-ms-correlation-request-id": [
+ "85895206-09c4-46f3-857f-3f1ae3926a2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:85895206-09c4-46f3-857f-3f1ae3926a2a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "ebc2051f-d1ec-4347-9c20-55332fd1d734"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13023"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4d8b01b-0902-4544-94cc-67b62b02a00e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:d4d8b01b-0902-4544-94cc-67b62b02a00e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "d5ce318d-253e-4362-b56d-bda7971c0a91"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13022"
+ ],
+ "x-ms-correlation-request-id": [
+ "84862fdf-37d3-4083-be11-9000387a7b5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:84862fdf-37d3-4083-be11-9000387a7b5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e228d0ce-2764-416b-8e27-880f6314b5f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13021"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a7589ba-2a20-451e-8ffc-ca8e525db86a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:9a7589ba-2a20-451e-8ffc-ca8e525db86a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "7198a572-4856-40d4-8878-9c626d51b97e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13020"
+ ],
+ "x-ms-correlation-request-id": [
+ "53bd1093-2cb6-4ba2-a9e4-d280c6c4ede5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:53bd1093-2cb6-4ba2-a9e4-d280c6c4ede5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "24ed3472-5b4c-459a-ab1d-6dbe429d5bd3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13019"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5d66765-c6cd-47c8-ab3b-6d8f2e7e0e4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:a5d66765-c6cd-47c8-ab3b-6d8f2e7e0e4e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "ff53967a-3fcc-4651-bef3-bcacf2a36911"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13018"
+ ],
+ "x-ms-correlation-request-id": [
+ "b18dd58d-9942-4fbb-ba81-8551ee6d44bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:b18dd58d-9942-4fbb-ba81-8551ee6d44bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e80414e2-e620-4116-975f-7174fdb7149f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13017"
+ ],
+ "x-ms-correlation-request-id": [
+ "3edf8ef1-735a-4ff1-bd71-1f5952e2a3f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:3edf8ef1-735a-4ff1-bd71-1f5952e2a3f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "c8c4ab94-a447-46c0-8f8f-e5ee8d15eee0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13016"
+ ],
+ "x-ms-correlation-request-id": [
+ "3ae121e9-7f69-43d6-9140-5ec5ab93e5c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:3ae121e9-7f69-43d6-9140-5ec5ab93e5c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "40dc7edf-f800-41ff-b4f0-ea9fa1dad31f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13015"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c9b6dcd-31ac-4843-bb6b-ab181a071751"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:4c9b6dcd-31ac-4843-bb6b-ab181a071751"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:09 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "269f1535-877a-4e62-8f04-e39fc9c7cce1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13014"
+ ],
+ "x-ms-correlation-request-id": [
+ "ee7a183e-9cf6-4be7-8971-e4e22d75d8d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212610Z:ee7a183e-9cf6-4be7-8971-e4e22d75d8d1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f98b2f13-92a2-4265-b74e-332dd7a4a030"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13013"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cbedeb0-a6b3-4455-a6de-264484c604e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:3cbedeb0-a6b3-4455-a6de-264484c604e4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "44b78535-ad38-4ac3-b7a8-465355c062d7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13012"
+ ],
+ "x-ms-correlation-request-id": [
+ "46ee850e-f97f-4817-bbbc-1d6f2470e3e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:46ee850e-f97f-4817-bbbc-1d6f2470e3e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "2ffb7cc9-4f9c-4428-b72e-7d8e41b8dfef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13011"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8af7c24-ab0f-4a50-8404-0026d23d3710"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:e8af7c24-ab0f-4a50-8404-0026d23d3710"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f7126617-37f4-426e-be2f-37ba3257009c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13010"
+ ],
+ "x-ms-correlation-request-id": [
+ "18589ddc-2f1b-482a-b8ef-2fd78b255845"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:18589ddc-2f1b-482a-b8ef-2fd78b255845"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "0fe781b4-e8a4-4dd2-bbc2-4096b3532635"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13009"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebe2629d-249d-4f67-b8f6-2a7ea82a9067"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:ebe2629d-249d-4f67-b8f6-2a7ea82a9067"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "9ba36be2-1bc5-4a3e-aba6-f482ad3cf9eb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13008"
+ ],
+ "x-ms-correlation-request-id": [
+ "698fdf18-bff5-4241-84b7-68dbdf077bee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:698fdf18-bff5-4241-84b7-68dbdf077bee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "61583bde-f661-42fd-a008-567e0ffaa714"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13007"
+ ],
+ "x-ms-correlation-request-id": [
+ "9be7deb7-7849-48bd-be70-a7d557cbe781"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:9be7deb7-7849-48bd-be70-a7d557cbe781"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "6154be9d-5ef3-4d96-a250-a933ef050650"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13006"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a55642a-68ca-4a09-abd6-03848efcb2a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212611Z:5a55642a-68ca-4a09-abd6-03848efcb2a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:10 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "2eac1c00-261f-4d3d-97bd-0a418e1c62c9"
+ ],
+ "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": [
+ "da1b48d4-a2be-41b3-827a-ab534f664ec7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:da1b48d4-a2be-41b3-827a-ab534f664ec7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "da0f2e2d-6675-4680-b69d-bae210c729cd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13004"
+ ],
+ "x-ms-correlation-request-id": [
+ "871c2d62-881f-47f2-a6f9-64bcc61cdccd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:871c2d62-881f-47f2-a6f9-64bcc61cdccd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "099c6b9d-3836-46f7-bb7c-4f23aa6cbea7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13003"
+ ],
+ "x-ms-correlation-request-id": [
+ "df21f79f-f100-4dff-b0ac-509536371955"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:df21f79f-f100-4dff-b0ac-509536371955"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "8fd7740c-948f-414d-ae29-7c02e64a1d9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13002"
+ ],
+ "x-ms-correlation-request-id": [
+ "5257cd73-3d31-4bb2-97bf-6b71596f4a01"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:5257cd73-3d31-4bb2-97bf-6b71596f4a01"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "f6dfa1c6-7ef2-48dc-a4e1-0bc68ff5db5c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13001"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a7232b8-9684-423c-92b0-4446020a83b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:9a7232b8-9684-423c-92b0-4446020a83b9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "cb602464-51ca-4768-ba93-636b17b12fd0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "13000"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d1a4b20-c00b-4776-bb33-b08e63e3bc0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:0d1a4b20-c00b-4776-bb33-b08e63e3bc0c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "6f1d86c4-9abc-4aec-864c-ba31970a3a8f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12999"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0f786ea-e756-45f9-9fa5-9482d50c112e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:f0f786ea-e756-45f9-9fa5-9482d50c112e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "15bd3ee2-8abe-403e-92c8-1beef90696af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12998"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b14ad21-16ce-4b1c-87c3-ea9277eee3c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:1b14ad21-16ce-4b1c-87c3-ea9277eee3c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "59cb6622-40c2-44f2-8c29-b74c906767b3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12997"
+ ],
+ "x-ms-correlation-request-id": [
+ "3994288d-7558-4ff0-b3d4-60e60e138904"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:3994288d-7558-4ff0-b3d4-60e60e138904"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "0d9ea2af-3794-4f86-bf4a-97cb65b22025"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12996"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0b890e0-d1ab-4135-8c1f-f6798c38679a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212612Z:b0b890e0-d1ab-4135-8c1f-f6798c38679a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:11 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b07c1aa3-f38c-4df3-8102-deb0c31435a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12995"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb231262-0a21-4460-871b-540850a1c018"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:fb231262-0a21-4460-871b-540850a1c018"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "70630740-5b68-431b-83af-23cdfba09370"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12994"
+ ],
+ "x-ms-correlation-request-id": [
+ "c679eacd-b338-40f5-b787-5435db9407c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:c679eacd-b338-40f5-b787-5435db9407c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "952"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "336fa754-26a7-4224-901f-463961d9f30d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12993"
+ ],
+ "x-ms-correlation-request-id": [
+ "37572560-5d5d-4bdd-96be-251abac60a52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:37572560-5d5d-4bdd-96be-251abac60a52"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f791f160-dbc0-4ee1-8152-1f4f88989d10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12992"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bdfa03b-ea38-461e-aead-363439722f17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:7bdfa03b-ea38-461e-aead-363439722f17"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2e161b1-0658-4580-8a6d-0b70501fe179"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12991"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8b694f3-f6ff-4a11-9a2c-5a7368084b23"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:c8b694f3-f6ff-4a11-9a2c-5a7368084b23"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "423"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "11cf6aec-7d58-4b9d-9e35-25dc9804cc28"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12990"
+ ],
+ "x-ms-correlation-request-id": [
+ "49953467-15f9-4f5e-bb06-7f4c83f7ba3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:49953467-15f9-4f5e-bb06-7f4c83f7ba3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "322"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89a61a3e-5af2-453b-866a-a98a2d46e282"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12989"
+ ],
+ "x-ms-correlation-request-id": [
+ "1630814b-1e8d-4871-961a-c0a86447986f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:1630814b-1e8d-4871-961a-c0a86447986f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1311"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "73fa6685-4910-4e21-8a2a-1f5343e9a80b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12988"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0c3a456-ec33-43b7-8430-ef844fe19151"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:c0c3a456-ec33-43b7-8430-ef844fe19151"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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=",
+ "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\": \"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}",
+ "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": [
+ "a6d54802-bcac-4cdd-b9a2-e8e7b7dcbcd5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12987"
+ ],
+ "x-ms-correlation-request-id": [
+ "0731bdce-fe26-4e83-8ad6-dd849077133f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:0731bdce-fe26-4e83-8ad6-dd849077133f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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=",
+ "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\": \"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}",
+ "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": [
+ "ab06dd13-7134-4b6d-8803-18b00de934cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12986"
+ ],
+ "x-ms-correlation-request-id": [
+ "97c2b5e5-c32e-4023-8766-82a5493d4879"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212613Z:97c2b5e5-c32e-4023-8766-82a5493d4879"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:13 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=",
+ "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\": \"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}",
+ "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": [
+ "8c6b83f6-4cca-409a-8a76-5bf08bae6f99"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12985"
+ ],
+ "x-ms-correlation-request-id": [
+ "a06dd1aa-0d97-4ba3-b31b-ca812d3d5eec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:a06dd1aa-0d97-4ba3-b31b-ca812d3d5eec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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=",
+ "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\": \"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}",
+ "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": [
+ "f55712d5-cea7-4c90-866b-69894bb329f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12984"
+ ],
+ "x-ms-correlation-request-id": [
+ "a7e8ad5c-9a32-4806-b64a-65727a871113"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:a7e8ad5c-9a32-4806-b64a-65727a871113"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "318"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "539ecfe7-2c49-4327-b502-b1253114369c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12983"
+ ],
+ "x-ms-correlation-request-id": [
+ "088e15a5-03a0-4e64-9544-396a3205a20b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:088e15a5-03a0-4e64-9544-396a3205a20b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7bb5543b-2f23-4f46-a29c-5756c38cb462"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12982"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5c64abe-267b-4db6-8313-293e9e701460"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:a5c64abe-267b-4db6-8313-293e9e701460"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1ae0710a-0aa0-4de3-9586-4dc9b40d9f0d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12981"
+ ],
+ "x-ms-correlation-request-id": [
+ "30e4a3eb-b1e2-406c-b404-50e91c0e664e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:30e4a3eb-b1e2-406c-b404-50e91c0e664e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3ac431d-c61e-4be3-856b-990f0ed19a2f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12980"
+ ],
+ "x-ms-correlation-request-id": [
+ "d60b41a9-1b12-45d1-a85c-d4a5cacf517a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:d60b41a9-1b12-45d1-a85c-d4a5cacf517a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ad951465-79ec-4d7f-a893-72ca32e0ea19"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12979"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4b64440-16be-4fa0-921e-063e4fbde5fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:c4b64440-16be-4fa0-921e-063e4fbde5fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f033bd82-dac2-4017-9ef3-6738574edf39"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12978"
+ ],
+ "x-ms-correlation-request-id": [
+ "78131f58-b0f6-4b61-8894-af3bc8eba46e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:78131f58-b0f6-4b61-8894-af3bc8eba46e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b08fc68-1457-4589-b3a7-873e0659f631"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12977"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8ea2420-f6ca-400b-b961-6c51a15e4aa6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212614Z:e8ea2420-f6ca-400b-b961-6c51a15e4aa6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:14 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1909"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f90c4aaa-cd3b-4ed9-ab56-c2b2065be95c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12976"
+ ],
+ "x-ms-correlation-request-id": [
+ "49f90d81-119a-4b77-8fbf-909b807a8b7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:49f90d81-119a-4b77-8fbf-909b807a8b7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "461"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ac1a7cfd-d55e-413a-a744-2365ce8e99a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12975"
+ ],
+ "x-ms-correlation-request-id": [
+ "13a6ee72-f37f-4bb1-85c3-41b4fc011d53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:13a6ee72-f37f-4bb1-85c3-41b4fc011d53"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "461"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64a1ea69-7121-45d9-b3b5-cec3977a71cd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12974"
+ ],
+ "x-ms-correlation-request-id": [
+ "52c0ad3a-9b9d-4f0a-a844-689c066c2058"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:52c0ad3a-9b9d-4f0a-a844-689c066c2058"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fe2367b-8045-4cc6-9bc6-3454e4e0a5f2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12973"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f884332-aa5b-4773-abfe-c2b879a228a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:5f884332-aa5b-4773-abfe-c2b879a228a1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "22371f2d-f0da-44e3-a79f-9caf6297836d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12972"
+ ],
+ "x-ms-correlation-request-id": [
+ "e250d126-0078-4199-97cc-86f17862f834"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:e250d126-0078-4199-97cc-86f17862f834"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1b7aea0-11cd-4b94-ab6e-05282c79a19e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12971"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd527a41-7618-42cd-9a67-531e4f9ab07d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:cd527a41-7618-42cd-9a67-531e4f9ab07d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a43fad13-f13a-42cd-968b-73f342eea834"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12970"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5622d5e-6952-4560-9356-78e3d8d2402a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:f5622d5e-6952-4560-9356-78e3d8d2402a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b613443-5a02-4b3d-9397-745cb1b16969"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12969"
+ ],
+ "x-ms-correlation-request-id": [
+ "d8d2b76e-c921-45a9-b451-0c495e042c99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:d8d2b76e-c921-45a9-b451-0c495e042c99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1873"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2f6524aa-f160-44cf-956d-20814b1c515f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12968"
+ ],
+ "x-ms-correlation-request-id": [
+ "70bd9f39-30cb-478b-93d7-1f38344d0215"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:70bd9f39-30cb-478b-93d7-1f38344d0215"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "455"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5b0679d-20df-4a89-9af4-ae2853e1a014"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12967"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcb815f7-bbb0-4476-95f9-f04d857b17b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:fcb815f7-bbb0-4476-95f9-f04d857b17b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "455"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59a84949-25ef-4637-956f-4b5d8f2076a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12966"
+ ],
+ "x-ms-correlation-request-id": [
+ "f9f1d1a2-1065-4f35-b2fb-10bab1060397"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212615Z:f9f1d1a2-1065-4f35-b2fb-10bab1060397"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:15 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "459"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0beaf13d-32ac-4cdf-84ad-e2fba1f0528f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12965"
+ ],
+ "x-ms-correlation-request-id": [
+ "42738378-464b-42cc-826a-cfae1bfa75de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:42738378-464b-42cc-826a-cfae1bfa75de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "459"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7d4e510-2313-4d8d-a42e-edac8ca5666b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12964"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4d8252e-1c73-41a6-9fb6-b65d518c451a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:b4d8252e-1c73-41a6-9fb6-b65d518c451a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "459"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1fc7e3ee-8ed2-4a48-b7ee-c75f6bc38310"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12963"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1a22775-ce1f-43c2-a696-027c3e0989f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:f1a22775-ce1f-43c2-a696-027c3e0989f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "459"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "453d4357-6bae-4d02-89bc-54b1e0541c62"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12962"
+ ],
+ "x-ms-correlation-request-id": [
+ "6160f0b3-7a14-4c2b-9485-ddb26a9f63f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:6160f0b3-7a14-4c2b-9485-ddb26a9f63f2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "49e6fb96-8b6a-4209-9710-9d7d2e61f4d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12961"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c82ad66-6e2f-4011-addb-4a8ffe19c950"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:3c82ad66-6e2f-4011-addb-4a8ffe19c950"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1683"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3ff2e63-fa20-4eec-8928-c01e22fd52de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12960"
+ ],
+ "x-ms-correlation-request-id": [
+ "029f831d-03f8-493f-bed4-932408e8fb8d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:029f831d-03f8-493f-bed4-932408e8fb8d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f5b4dd3d-ba53-473f-8694-6ce4c555b6a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12959"
+ ],
+ "x-ms-correlation-request-id": [
+ "30c9932e-fbf2-426e-8521-d1759871fbb1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:30c9932e-fbf2-426e-8521-d1759871fbb1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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",
+ "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\": \"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}",
+ "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": [
+ "73ea0168-1d29-4696-a93d-1b11fd328a91"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12958"
+ ],
+ "x-ms-correlation-request-id": [
+ "81d7a623-8a5b-4e12-b28e-47e76532629c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:81d7a623-8a5b-4e12-b28e-47e76532629c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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=",
+ "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.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]",
+ "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": [
+ "b1d3af2c-f530-496a-b64a-c4aa40191143"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12957"
+ ],
+ "x-ms-correlation-request-id": [
+ "d180e3c0-1415-4be7-9630-1f57f00d814c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212616Z:d180e3c0-1415-4be7-9630-1f57f00d814c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:16 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1606dda7-2801-41e7-b1c4-d332179aa0b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12956"
+ ],
+ "x-ms-correlation-request-id": [
+ "644bcc39-c5eb-432a-8b66-98e7dee0e954"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:644bcc39-c5eb-432a-8b66-98e7dee0e954"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "595"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb9b7568-6b1a-41a7-ba16-45c09e4f313b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12955"
+ ],
+ "x-ms-correlation-request-id": [
+ "50fbf304-ee2b-4c91-b329-c52f408b0847"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:50fbf304-ee2b-4c91-b329-c52f408b0847"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "344a0318-bbd8-4cb5-883a-f1f22f783267"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12954"
+ ],
+ "x-ms-correlation-request-id": [
+ "69da2722-9567-4244-af4a-92344b29203e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:69da2722-9567-4244-af4a-92344b29203e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9146d4cc-9e19-48e3-b58c-bbac1743b294"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12953"
+ ],
+ "x-ms-correlation-request-id": [
+ "5bd4773e-d784-4c4c-bc8e-ebda589abfac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:5bd4773e-d784-4c4c-bc8e-ebda589abfac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39dd6ebe-5853-4830-8db1-ef165a0e8aa9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12952"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cde8cbd-2bd9-4cb8-b5ca-794d703ab89e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:9cde8cbd-2bd9-4cb8-b5ca-794d703ab89e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3c08e88f-2893-43c7-902a-ab81ef147fb8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12951"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b9563dc-78b0-4003-98c3-5672900baae3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:1b9563dc-78b0-4003-98c3-5672900baae3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "216a4c4e-0648-4a76-9ec9-dbaeb4dd909e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12950"
+ ],
+ "x-ms-correlation-request-id": [
+ "10f4bd33-174a-4651-acc4-fc728b9b6b7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:10f4bd33-174a-4651-acc4-fc728b9b6b7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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=",
+ "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\": \"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}",
+ "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": [
+ "867d2d0f-b3e0-4220-ae33-bcad3502cc0b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12949"
+ ],
+ "x-ms-correlation-request-id": [
+ "60c45eae-fb2e-44b2-9ff6-32484a545517"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212617Z:60c45eae-fb2e-44b2-9ff6-32484a545517"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f1290eb6-6f93-478e-b5c4-fbed185557a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12948"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad2ae7df-9f59-4257-9b57-aa876de4d6a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:ad2ae7df-9f59-4257-9b57-aa876de4d6a4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "396"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0be5d4c0-f80a-4f60-9047-11e3d1d766ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12947"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b025b00-9b5f-41e4-892f-a01dd6d5b266"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:6b025b00-9b5f-41e4-892f-a01dd6d5b266"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb6328d9-8c7d-422f-b938-399b4463399d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12946"
+ ],
+ "x-ms-correlation-request-id": [
+ "3511eacb-6251-4207-8485-29dfe58d08b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:3511eacb-6251-4207-8485-29dfe58d08b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "817"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "191bc831-7b13-4999-9de5-20997a218483"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12945"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ea10914-067b-4bf1-9f47-cfe89d834d05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:8ea10914-067b-4bf1-9f47-cfe89d834d05"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cee35e2d-366c-4d74-9e7f-cc7688c56f27"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12944"
+ ],
+ "x-ms-correlation-request-id": [
+ "f85a95de-bb90-4bbf-82fa-e7e380c39be1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:f85a95de-bb90-4bbf-82fa-e7e380c39be1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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",
+ "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\": \"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}",
+ "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": [
+ "bf7cb308-0de0-472b-9183-108f7863fecf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12943"
+ ],
+ "x-ms-correlation-request-id": [
+ "250bf5c3-207a-4ba5-aceb-0bde1402ebe8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:250bf5c3-207a-4ba5-aceb-0bde1402ebe8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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==",
+ "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\": \"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]",
+ "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": [
+ "56634e17-789d-4c50-9962-e4080b3d1009"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12942"
+ ],
+ "x-ms-correlation-request-id": [
+ "77d0e126-bb08-4888-b28e-fe67afe1116d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:77d0e126-bb08-4888-b28e-fe67afe1116d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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=",
+ "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\": \"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}",
+ "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": [
+ "c38866bd-960f-4857-b214-3da290f56d5f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12941"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a22ff6d-bd92-4ff3-8e14-2e51c74a0f79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:9a22ff6d-bd92-4ff3-8e14-2e51c74a0f79"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "875"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4333e39-da31-4526-b66c-043e78a896fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12940"
+ ],
+ "x-ms-correlation-request-id": [
+ "c08006d3-e4b0-4070-9efa-6badf2cb08e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:c08006d3-e4b0-4070-9efa-6badf2cb08e1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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==",
+ "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\": \"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}",
+ "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": [
+ "7453999c-54d3-403b-8816-a09b51f11ca3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12939"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3f578f4-ca47-4131-a72a-0b0592678698"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:f3f578f4-ca47-4131-a72a-0b0592678698"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "396"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdd27444-033e-4bbc-abe8-ddb8a22db85c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12938"
+ ],
+ "x-ms-correlation-request-id": [
+ "10068553-1713-480d-8cd3-f649a8edf4dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212618Z:10068553-1713-480d-8cd3-f649a8edf4dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "396"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d8165d7-c9eb-4235-af09-77437e692cbe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12937"
+ ],
+ "x-ms-correlation-request-id": [
+ "42284fab-1a86-4c29-be02-55a77005e31a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:42284fab-1a86-4c29-be02-55a77005e31a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:18 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2099"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f256c7fd-f951-4191-95be-096a3795f4af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12936"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed289ac7-a460-4c5c-b21b-dd57621a74ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:ed289ac7-a460-4c5c-b21b-dd57621a74ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "595"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "45a066bd-0ec0-4f0f-b9b2-084722ed903b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12935"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b99daac-220e-43d0-8e34-025a2c285c87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:9b99daac-220e-43d0-8e34-025a2c285c87"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76b6692a-5b7e-4eec-af79-1d8671a9a916"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12934"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccf9c12d-27cf-4568-97b0-1b24fe5f05f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:ccf9c12d-27cf-4568-97b0-1b24fe5f05f8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d6f024f-bfd5-47f2-866e-c2a3c6f573f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12933"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3db4596-5e2b-47b2-8054-0cf840f67f8c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:d3db4596-5e2b-47b2-8054-0cf840f67f8c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f6a2f58f-0ec6-416a-8366-5b9f04f7d12c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12932"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ec62245-245c-4ad8-928f-a3d703e2db78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:2ec62245-245c-4ad8-928f-a3d703e2db78"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30626228-bb32-4a42-b9cc-ea7b3fe51254"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12931"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6c52121-d432-43ea-a5be-bba85849fcad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:f6c52121-d432-43ea-a5be-bba85849fcad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "601"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8375a3a6-3490-4c20-bdc8-4a6f32ae13a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12930"
+ ],
+ "x-ms-correlation-request-id": [
+ "63666b6e-cce5-42a2-b313-fa4e161e6900"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:63666b6e-cce5-42a2-b313-fa4e161e6900"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "403"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "647ab1c2-8ecd-4bcf-9f42-bf4d100ce58e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12929"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c1952a4-6ac6-4f39-9d0d-64bea2c7293c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:6c1952a4-6ac6-4f39-9d0d-64bea2c7293c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "403"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "807d2a45-58d7-4ac8-859f-696c8fe083e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12928"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b5ef9a8-5410-49de-9da0-ba84d5245700"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212619Z:3b5ef9a8-5410-49de-9da0-ba84d5245700"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "607"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "934c4f23-35c1-4eff-93c5-4ad050d179c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12927"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebe1f13f-5e7f-43a6-bf8c-de42a5acee0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:ebe1f13f-5e7f-43a6-bf8c-de42a5acee0f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5896464e-17a6-4bf2-8e25-691a672ed40d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12926"
+ ],
+ "x-ms-correlation-request-id": [
+ "a52cdb1d-1294-40ea-9f0a-db89ad76aef8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:a52cdb1d-1294-40ea-9f0a-db89ad76aef8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:19 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c13dc7f1-85f2-43b5-8be7-ff857655d393"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12925"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0b4ba23-526f-48e5-a50a-871ddfcdd244"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:e0b4ba23-526f-48e5-a50a-871ddfcdd244"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "611"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44a2f544-1441-41f0-9e62-e2750e7cf9bd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12924"
+ ],
+ "x-ms-correlation-request-id": [
+ "d345cb74-0e4e-4060-a535-a7d0081ba316"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:d345cb74-0e4e-4060-a535-a7d0081ba316"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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=",
+ "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\": \"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}",
+ "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": [
+ "f8c638d3-3e0b-4dfd-9877-f5ce99ace2d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12923"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e014de9-6db7-4bfa-a4a4-47daa867db72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:0e014de9-6db7-4bfa-a4a4-47daa867db72"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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=",
+ "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\": \"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}",
+ "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": [
+ "72d801dc-f6e8-4447-b6de-247c70039d35"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12922"
+ ],
+ "x-ms-correlation-request-id": [
+ "053f328b-bf68-4f48-b96c-9ced802af0ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:053f328b-bf68-4f48-b96c-9ced802af0ed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "57a821e9-bcf6-4d5d-be7e-56b219b7acb7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12921"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a015963-c131-427d-8378-a56fb70e7282"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:3a015963-c131-427d-8378-a56fb70e7282"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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=",
+ "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\": \"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}",
+ "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": [
+ "76f43dd6-bdc9-425e-a22e-1830d68d56da"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12920"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b8ae599-88af-4c30-b85c-ed9216b4d456"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:2b8ae599-88af-4c30-b85c-ed9216b4d456"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed7d9895-cc41-4adc-8bda-b7310117c28e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12919"
+ ],
+ "x-ms-correlation-request-id": [
+ "6d28c8b2-1a6c-4a6b-a538-ccf5624af437"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:6d28c8b2-1a6c-4a6b-a538-ccf5624af437"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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=",
+ "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\": \"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}",
+ "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": [
+ "c3830037-b89a-444d-b83e-5e127a5c3c8d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12918"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5406f5c-7d27-4c8d-9a6f-b5ea817d11ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212620Z:d5406f5c-7d27-4c8d-9a6f-b5ea817d11ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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=",
+ "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\": \"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]",
+ "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": [
+ "7fb213d1-060d-4f49-8053-a7ebd17429f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12917"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e91674d-231b-416d-bbd0-f959dc1feea4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:2e91674d-231b-416d-bbd0-f959dc1feea4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "822"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9f1999c-9145-461f-a68f-9b63328781cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12916"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8031385-f042-491d-b805-429041985f9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:e8031385-f042-491d-b805-429041985f9c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:20 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdcdcb8d-e623-49f8-85ea-4235dee5dd14"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12915"
+ ],
+ "x-ms-correlation-request-id": [
+ "6016c9af-2880-41e1-b9bb-59c90a6375fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:6016c9af-2880-41e1-b9bb-59c90a6375fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "391"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bae5681a-bae0-4bb2-9158-2b7f1f56e931"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12914"
+ ],
+ "x-ms-correlation-request-id": [
+ "fb1810e8-0b7c-4726-9229-e44e9724f8f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:fb1810e8-0b7c-4726-9229-e44e9724f8f8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "293"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bea3c604-b3a4-472b-97fa-a94d76727071"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12913"
+ ],
+ "x-ms-correlation-request-id": [
+ "56f184df-ac15-4efe-b1e6-8bfd4e723442"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:56f184df-ac15-4efe-b1e6-8bfd4e723442"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "394"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6660aa18-2869-49c4-8bf2-f26eaec60123"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12912"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d469453-5975-4f2d-b6c5-8fd60ba8398e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:4d469453-5975-4f2d-b6c5-8fd60ba8398e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eac4b279-55fb-42a9-9b5f-70d8e0cc9446"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12911"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e8bb9a9-7d79-4d47-90a6-88a5eb1c6fb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:5e8bb9a9-7d79-4d47-90a6-88a5eb1c6fb3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "391"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "75f206ec-f0b3-456a-bde4-1586516e1c31"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12910"
+ ],
+ "x-ms-correlation-request-id": [
+ "56c8025e-be88-492e-8bc2-c10003962b4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:56c8025e-be88-492e-8bc2-c10003962b4f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7c587e6-ab33-4bfc-ab74-f21919408bbe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12909"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c4c094e-4fb4-42ba-a843-1aabb590d231"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:7c4c094e-4fb4-42ba-a843-1aabb590d231"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cbdb875c-df64-4021-9d17-ddf2dfe76beb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12908"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7c98450-1efd-408e-8936-5ed781194591"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212621Z:b7c98450-1efd-408e-8936-5ed781194591"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f602e313-7a7b-44f5-937e-293cddc97e9a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12907"
+ ],
+ "x-ms-correlation-request-id": [
+ "182a56b7-22c5-4437-9c50-1a2e74252a40"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:182a56b7-22c5-4437-9c50-1a2e74252a40"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9452b53a-9427-4ece-a9f1-7d0aaa0778ea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12906"
+ ],
+ "x-ms-correlation-request-id": [
+ "f56b1294-5504-456a-aef0-f713e4f47d18"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:f56b1294-5504-456a-aef0-f713e4f47d18"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:21 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc817f5b-0b09-4b96-94ae-991f6777f133"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12905"
+ ],
+ "x-ms-correlation-request-id": [
+ "477c3456-1797-42cb-95bd-9c85a641688a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:477c3456-1797-42cb-95bd-9c85a641688a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:22 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "beeb3ad7-bc62-45d8-84dc-dfb4987913f9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12904"
+ ],
+ "x-ms-correlation-request-id": [
+ "36ff94de-c52a-46d1-977d-c0d365e1ae3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:36ff94de-c52a-46d1-977d-c0d365e1ae3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:22 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5f40e8c2-ea5f-4a69-8941-d799901149e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12903"
+ ],
+ "x-ms-correlation-request-id": [
+ "62b63004-0595-4ff6-84bd-e3aaa5084b37"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:62b63004-0595-4ff6-84bd-e3aaa5084b37"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:22 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "380"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bccbdd65-5c74-4ce2-9177-375b46e4a3ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12902"
+ ],
+ "x-ms-correlation-request-id": [
+ "713f7c09-50a2-4d9c-a3ea-aaf162cdfb29"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212622Z:713f7c09-50a2-4d9c-a3ea-aaf162cdfb29"
+ ],
+ "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?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnM/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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ebb586e4-ab18-4fb4-9d9b-0d33ae17c413"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "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"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5bc3b94-68a8-4531-9c71-db3c3ef1ff49"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:a5bc3b94-68a8-4531-9c71-db3c3ef1ff49"
+ ],
+ "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-Update-0.3/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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.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]",
+ "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": [
+ "43a7bfd7-20ca-41dc-81df-ce902012d907"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12897"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2845621-325a-4ea9-9089-db730feff4ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:b2845621-325a-4ea9-9089-db730feff4ec"
+ ],
+ "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-Update-0.3/versions/9600.17361.141206?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0SHlicmlkQ2xvdWRTdG9yYWdlL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU3RvclNpbXBsZS9za3VzL1N0b3JTaW1wbGUtODAwMC1TZXJpZXMtVXBkYXRlLTAuMy92ZXJzaW9ucy85NjAwLjE3MzYxLjE0MTIwNj9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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.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}",
+ "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": [
+ "a229b0a4-e64e-4440-8ff2-04fa4ae3a0c0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12896"
+ ],
+ "x-ms-correlation-request-id": [
+ "da099074-5219-4a2b-a0fd-d163f32417cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:da099074-5219-4a2b-a0fd-d163f32417cd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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\": \"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]",
+ "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": [
+ "3b83697c-01c1-4e3e-ad3f-b3851ac7c54e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12895"
+ ],
+ "x-ms-correlation-request-id": [
+ "6675684e-2f8a-4d86-93c0-d6559fdab615"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:6675684e-2f8a-4d86-93c0-d6559fdab615"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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",
+ "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\": \"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]",
+ "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": [
+ "81ebec11-a3a9-4fe5-ab89-c624988f2df0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12894"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f7565de-5e43-4a42-96e0-c25df67590b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:1f7565de-5e43-4a42-96e0-c25df67590b6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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.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]",
+ "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": [
+ "6b77ef29-c6e1-48d7-bd8b-31c6a73f75a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12893"
+ ],
+ "x-ms-correlation-request-id": [
+ "c1e80c47-7e48-4ea1-8893-eaf50dd4d4da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:c1e80c47-7e48-4ea1-8893-eaf50dd4d4da"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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\": \"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}",
+ "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": [
+ "e886c52a-d761-4e3f-8e7b-6abc71a68c4e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12892"
+ ],
+ "x-ms-correlation-request-id": [
+ "4756bc18-e2cc-441c-a4c5-02ee4d40312a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:4756bc18-e2cc-441c-a4c5-02ee4d40312a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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==",
+ "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\": \"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]",
+ "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": [
+ "733c1fcf-8e1d-4eaf-a692-607dada0bf1d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12891"
+ ],
+ "x-ms-correlation-request-id": [
+ "a202ea7d-8c60-4732-9477-5e1877d82ad5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:a202ea7d-8c60-4732-9477-5e1877d82ad5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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==",
+ "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\": \"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]",
+ "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": [
+ "3bb5999e-754f-4311-a92d-33b018665b88"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12890"
+ ],
+ "x-ms-correlation-request-id": [
+ "cba6bbc3-6d8f-4a51-bf28-d55b51cdcd46"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212623Z:cba6bbc3-6d8f-4a51-bf28-d55b51cdcd46"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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",
+ "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\": \"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]",
+ "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": [
+ "9f1eab92-7bd8-4cd0-b1b2-f86662506b3e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12889"
+ ],
+ "x-ms-correlation-request-id": [
+ "68fec837-8dad-4674-a958-033ddfdf564f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:68fec837-8dad-4674-a958-033ddfdf564f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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\": \"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}",
+ "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": [
+ "cae0a363-b505-4af1-a4e8-e0bade2c91a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12888"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaaf8092-12d4-4f71-8b4f-401457632d3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:eaaf8092-12d4-4f71-8b4f-401457632d3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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\": \"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}",
+ "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": [
+ "d81ef21d-2b4d-4bfb-8323-52438ee23108"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12887"
+ ],
+ "x-ms-correlation-request-id": [
+ "96a395d9-72ec-4c52-a2da-5f734ef8e826"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:96a395d9-72ec-4c52-a2da-5f734ef8e826"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:23 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=",
+ "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\": \"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}",
+ "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": [
+ "eee52375-d9dc-42fa-a3bb-715d8260a69b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12886"
+ ],
+ "x-ms-correlation-request-id": [
+ "9839cb8b-269f-4a7e-8a09-0e84ac9fd440"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:9839cb8b-269f-4a7e-8a09-0e84ac9fd440"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "882"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a003aee-3ed9-46b0-856b-d1aac6df589c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12885"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb97b4bc-bb9c-4da8-80b9-583c7cb5daa3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:eb97b4bc-bb9c-4da8-80b9-583c7cb5daa3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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",
+ "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\": \"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}",
+ "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": [
+ "3b735dab-d98e-4ea6-a6e8-f1cd729b0106"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12884"
+ ],
+ "x-ms-correlation-request-id": [
+ "e651e3e6-79d1-4a60-a910-d8fa24888214"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:e651e3e6-79d1-4a60-a910-d8fa24888214"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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",
+ "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\": \"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}",
+ "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": [
+ "8a0874c3-6b82-4916-b18b-8873bd6c27e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12883"
+ ],
+ "x-ms-correlation-request-id": [
+ "082b5404-8ed7-4703-b993-74f7daabb900"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:082b5404-8ed7-4703-b993-74f7daabb900"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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",
+ "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\": \"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}",
+ "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": [
+ "700529d2-d536-4f0d-9522-0900d212f82f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12882"
+ ],
+ "x-ms-correlation-request-id": [
+ "62601f89-dbde-45d8-a001-458d4cbdfa7d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:62601f89-dbde-45d8-a001-458d4cbdfa7d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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=",
+ "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\": \"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]",
+ "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": [
+ "2645111e-d683-4ba7-a6d6-c088a3b19631"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12881"
+ ],
+ "x-ms-correlation-request-id": [
+ "097536da-251d-4c90-add8-a08a85e80266"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:097536da-251d-4c90-add8-a08a85e80266"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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==",
+ "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\": \"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}",
+ "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": [
+ "8178d01e-a5d7-42d9-91c3-78b4ab217c82"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12880"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c0a9b6b-8196-4367-9790-8f46ca5cb414"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:3c0a9b6b-8196-4367-9790-8f46ca5cb414"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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==",
+ "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\": \"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}",
+ "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": [
+ "06a2f4dd-73c6-4c5a-9e4f-8992bdd1e5e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12879"
+ ],
+ "x-ms-correlation-request-id": [
+ "35717d26-e72f-4686-8aa0-6141f8389654"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212624Z:35717d26-e72f-4686-8aa0-6141f8389654"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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==",
+ "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\": \"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}",
+ "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": [
+ "97713d6a-1a80-48a5-a7da-e9c7c5a516c1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12878"
+ ],
+ "x-ms-correlation-request-id": [
+ "06ed0432-3a68-4945-9ea9-64aacc814fe0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:06ed0432-3a68-4945-9ea9-64aacc814fe0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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",
+ "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\": \"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]",
+ "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": [
+ "b1e5437c-9f9c-4ad3-ba42-062daaa635be"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12877"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d7657f6-0a45-4a41-b9fb-e9f6bc89a829"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:4d7657f6-0a45-4a41-b9fb-e9f6bc89a829"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:24 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=",
+ "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.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]",
+ "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": [
+ "03dcda7d-42c9-4594-b1b5-6101c7db3aff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12876"
+ ],
+ "x-ms-correlation-request-id": [
+ "303eca26-0259-4cbc-ab70-17a2711b72e4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:303eca26-0259-4cbc-ab70-17a2711b72e4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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",
+ "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\": \"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}",
+ "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": [
+ "a565133a-5707-4f87-b692-50ce1b525fa2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12875"
+ ],
+ "x-ms-correlation-request-id": [
+ "cada1460-a3cb-4e01-87e5-ae4877431806"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:cada1460-a3cb-4e01-87e5-ae4877431806"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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",
+ "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\": \"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}",
+ "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": [
+ "da1f4c52-b489-47b0-a871-023753f6bc64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12874"
+ ],
+ "x-ms-correlation-request-id": [
+ "08f49b1c-1bb5-4d84-920a-aa4039753e33"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:08f49b1c-1bb5-4d84-920a-aa4039753e33"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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==",
+ "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.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]",
+ "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": [
+ "2f3bd2ed-b992-45cd-86d3-2ff671310575"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12873"
+ ],
+ "x-ms-correlation-request-id": [
+ "c869bbd1-6d77-4e43-80f5-96fb2c783f82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:c869bbd1-6d77-4e43-80f5-96fb2c783f82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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=",
+ "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 \"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}",
+ "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": [
+ "2dc5f4df-6f09-4443-bb4e-b41334dd7edd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12872"
+ ],
+ "x-ms-correlation-request-id": [
+ "d430c57a-130b-43d1-8492-8c9418ac7a6a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:d430c57a-130b-43d1-8492-8c9418ac7a6a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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=",
+ "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 \"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}",
+ "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": [
+ "afc2c663-ea04-45ea-9411-478726584f5d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12871"
+ ],
+ "x-ms-correlation-request-id": [
+ "d14dc7b4-6a86-4a2f-929c-26aff0cecee0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:d14dc7b4-6a86-4a2f-929c-26aff0cecee0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "613"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4ac33c4f-cd7c-4272-975a-5283045eeee4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12870"
+ ],
+ "x-ms-correlation-request-id": [
+ "ff21e039-3642-4ef0-af17-85ff3fead898"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:ff21e039-3642-4ef0-af17-85ff3fead898"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "974"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "347d8f47-947d-4f8b-a5c8-3f5018a8971b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12869"
+ ],
+ "x-ms-correlation-request-id": [
+ "4cff831b-c213-4ba5-aea7-5eb563b70bc3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212625Z:4cff831b-c213-4ba5-aea7-5eb563b70bc3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "974"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fb1c4b8-83bb-4b61-af26-642d67738721"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12868"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf39c85d-25a0-44ed-b70a-1f86a3525dd0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:bf39c85d-25a0-44ed-b70a-1f86a3525dd0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "571"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1de31440-a7aa-443b-9c9f-9c64affb01e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12867"
+ ],
+ "x-ms-correlation-request-id": [
+ "2cb22082-fe5f-47e7-b476-8c102f596e4c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:2cb22082-fe5f-47e7-b476-8c102f596e4c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b2263e4-729a-4286-9072-475e2ce1777a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12866"
+ ],
+ "x-ms-correlation-request-id": [
+ "37a3444e-4dac-4933-b0f8-a0b0dfbfd62c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:37a3444e-4dac-4933-b0f8-a0b0dfbfd62c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:25 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "237ee610-1a86-43a6-995f-420eaf531ec1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12865"
+ ],
+ "x-ms-correlation-request-id": [
+ "55cd932d-7727-40ea-a8a1-232cfd7a7c39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:55cd932d-7727-40ea-a8a1-232cfd7a7c39"
+ ],
+ "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-WS2012/skus/Web/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnM/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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "561"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1150761e-b0ec-4259-b566-2f7fb74e029c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12864"
+ ],
+ "x-ms-correlation-request-id": [
+ "50acbbf9-12b2-4917-a247-08fa65de4e9a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:50acbbf9-12b2-4917-a247-08fa65de4e9a"
+ ],
+ "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-WS2012/skus/Web/versions/11.0.5537?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTM3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fefdea60-5028-4ed6-869b-b43d06be5b63"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12863"
+ ],
+ "x-ms-correlation-request-id": [
+ "acb1ba22-7198-4219-b4b8-2d8ffb8fc821"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:acb1ba22-7198-4219-b4b8-2d8ffb8fc821"
+ ],
+ "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-WS2012/skus/Web/versions/11.0.5569?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTIvc2t1cy9XZWIvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6109a668-9324-46ff-acb9-aff66ebb50a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12862"
+ ],
+ "x-ms-correlation-request-id": [
+ "a04bcd81-1cc9-4bbf-b9e2-c56a83a6ca26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:a04bcd81-1cc9-4bbf-b9e2-c56a83a6ca26"
+ ],
+ "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?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a92b0c62-208e-43af-bb3a-83707fa49744"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12861"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc3d36d9-153c-404f-80fd-5f956b4b80a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:fc3d36d9-153c-404f-80fd-5f956b4b80a5"
+ ],
+ "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/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnM/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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "579"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e826e080-1a29-44ba-a183-2db2676f8de0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12860"
+ ],
+ "x-ms-correlation-request-id": [
+ "27018a74-4d1c-4c53-89a9-95d9e7cc16d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:27018a74-4d1c-4c53-89a9-95d9e7cc16d9"
+ ],
+ "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/versions/11.0.5548?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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}",
+ "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": [
+ "254c9f20-1d44-41af-8a84-3ffa97c44caa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12859"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2ba17dc-925b-430f-bf64-8012d93af1a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:a2ba17dc-925b-430f-bf64-8012d93af1a4"
+ ],
+ "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/versions/11.0.5569?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UvdmVyc2lvbnMvMTEuMC41NTY5P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "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\": \"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}",
+ "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": [
+ "0b3367c7-6e6f-456c-82e3-f32ceeb191bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12858"
+ ],
+ "x-ms-correlation-request-id": [
+ "70fd41dc-4228-4dcc-9458-452ac1845f8f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212626Z:70fd41dc-4228-4dcc-9458-452ac1845f8f"
+ ],
+ "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-DW/versions?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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-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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "613"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "abc11f62-ceff-49be-874e-67eca320b7f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12857"
+ ],
+ "x-ms-correlation-request-id": [
+ "a67e9db3-b3b6-4cbb-acf3-2a36ffaa9507"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:a67e9db3-b3b6-4cbb-acf3-2a36ffaa9507"
+ ],
+ "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-DW/versions/11.0.5548?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1NDg/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "974"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "01c0c595-5079-4f75-aa50-8d39c3f82191"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12856"
+ ],
+ "x-ms-correlation-request-id": [
+ "c19479af-0b0b-40fa-9f6a-38b2088b609f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:c19479af-0b0b-40fa-9f6a-38b2088b609f"
+ ],
+ "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-DW/versions/11.0.5569?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvTWljcm9zb2Z0U1FMU2VydmVyL2FydGlmYWN0dHlwZXMvdm1pbWFnZS9vZmZlcnMvU1FMMjAxMlNQMi1XUzIwMTJSMi9za3VzL0VudGVycHJpc2UtT3B0aW1pemVkLWZvci1EVy92ZXJzaW9ucy8xMS4wLjU1Njk/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "974"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "08fce6d3-168d-4b73-94d8-221032269417"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "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"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb64bde2-3e26-4350-bbd5-575623ca06fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:eb64bde2-3e26-4350-bbd5-575623ca06fa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "976"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1fb3f4d-69a1-4b95-a882-d1ef97f48455"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12853"
+ ],
+ "x-ms-correlation-request-id": [
+ "04fa349e-259f-4d9b-8345-abdf89ea4dd2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:04fa349e-259f-4d9b-8345-abdf89ea4dd2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "976"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f1576d82-fa08-4215-b890-f132fb15d41b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12852"
+ ],
+ "x-ms-correlation-request-id": [
+ "47d7ee29-8c61-4476-9b88-eb20731b696a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:47d7ee29-8c61-4476-9b88-eb20731b696a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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=",
+ "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/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]",
+ "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": [
+ "987f3570-369a-479d-bf21-9d7129d0e8aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12851"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd07e8ac-9055-4980-b737-8aac0a86e703"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:fd07e8ac-9055-4980-b737-8aac0a86e703"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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",
+ "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\": \"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}",
+ "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": [
+ "596a1053-4694-4e4e-9981-a0825c597c25"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12850"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc732e52-855b-494c-b300-4c0e94ee3d51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:cc732e52-855b-494c-b300-4c0e94ee3d51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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",
+ "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\": \"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}",
+ "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": [
+ "54a4215e-c8d9-4a67-97f2-883e906053ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12849"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf0c85df-7e5c-4aec-a9a2-78d50cff3463"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:bf0c85df-7e5c-4aec-a9a2-78d50cff3463"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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",
+ "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/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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "565"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "450e471f-46e1-41ab-bae3-9269b553726e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12848"
+ ],
+ "x-ms-correlation-request-id": [
+ "b74e18ec-e073-4860-8b1b-d18cbd2dd5c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212627Z:b74e18ec-e073-4860-8b1b-d18cbd2dd5c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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==",
+ "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\": \"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}",
+ "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": [
+ "1741370a-e0d3-4ff2-afeb-a917aaf86010"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12847"
+ ],
+ "x-ms-correlation-request-id": [
+ "5904e892-8f47-4fff-b32c-6d20dbc041f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:5904e892-8f47-4fff-b32c-6d20dbc041f6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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==",
+ "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\": \"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}",
+ "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": [
+ "97876ecd-2742-4f06-8d66-271d1f969ba0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12846"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2a2d22e-1038-4a8b-b0ca-1e636c677e3a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:d2a2d22e-1038-4a8b-b0ca-1e636c677e3a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1679"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "295634fa-fa13-455b-825f-4043eaf5c5c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12845"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a850823-7bde-4e74-accb-37255bde42a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:9a850823-7bde-4e74-accb-37255bde42a4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1143"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "116c0b19-da3b-44b4-b8e6-1eec4dabcc47"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12844"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d66ae46-bb4e-4e84-ad36-eaf07e14ca72"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:8d66ae46-bb4e-4e84-ad36-eaf07e14ca72"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:27 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "389"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4421c391-9768-4164-89d9-0385b2b1cfa2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12843"
+ ],
+ "x-ms-correlation-request-id": [
+ "9199b47e-c250-4d81-aa24-d9e9f60d1724"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:9199b47e-c250-4d81-aa24-d9e9f60d1724"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "389"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62553473-0d31-4d2e-88df-c3dbd1158357"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12842"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec547d1c-0d52-486d-b57c-04cc58a67d59"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:ec547d1c-0d52-486d-b57c-04cc58a67d59"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "389"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fed53f1-a970-4a45-9f2c-7cbdadf237bd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12841"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd2b7721-68e2-438e-8a08-9f79198f027c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:fd2b7721-68e2-438e-8a08-9f79198f027c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "389"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "31b1b5af-bccc-430d-9b7f-1bafced89654"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12840"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3646449-f36e-4907-a431-9d72ed4ec4b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:b3646449-f36e-4907-a431-9d72ed4ec4b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8aad91d0-0764-48fe-91f5-af825e5989d0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12839"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5a2e094-cb54-4d39-a0b3-5ca0e529e2a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:a5a2e094-cb54-4d39-a0b3-5ca0e529e2a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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",
+ "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\": \"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}",
+ "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": [
+ "16e78521-539f-412b-a909-3fa9f8e9e06f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12838"
+ ],
+ "x-ms-correlation-request-id": [
+ "e14994ab-c9b1-4d55-916e-8afcbda27948"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:e14994ab-c9b1-4d55-916e-8afcbda27948"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "909"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "24dc0376-27d4-4d6c-895c-466056e58411"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12837"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd1d7879-40d7-4563-a21e-0db8954ea44a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212628Z:fd1d7879-40d7-4563-a21e-0db8954ea44a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "971"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0eb8e936-7543-479c-83e8-dd5675e68a90"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12836"
+ ],
+ "x-ms-correlation-request-id": [
+ "31f7b4de-aded-48ff-8592-54f5a2907274"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:31f7b4de-aded-48ff-8592-54f5a2907274"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "971"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98519324-02bc-4140-b256-3975812a40b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12835"
+ ],
+ "x-ms-correlation-request-id": [
+ "7011b8cb-adaa-48c1-9841-8575e035c6ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:7011b8cb-adaa-48c1-9841-8575e035c6ea"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "971"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7fb5364-04c8-4f4e-9e3c-41ded8681ce5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12834"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c627237-3ea5-432e-bf20-abcfbc5c983a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:2c627237-3ea5-432e-bf20-abcfbc5c983a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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=",
+ "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\": \"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]",
+ "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": [
+ "0afd40bf-aecd-4684-ae53-66a5e843a463"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12833"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d4c2a2f-d895-4bc8-9d1a-f20364b2a9b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:8d4c2a2f-d895-4bc8-9d1a-f20364b2a9b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:28 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "973"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44820439-5b2f-4a0c-a764-75e0d8725287"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12832"
+ ],
+ "x-ms-correlation-request-id": [
+ "19a595e0-c28d-4276-911c-80e353703e26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:19a595e0-c28d-4276-911c-80e353703e26"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "973"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "132cb54c-cf70-4f5d-8bae-cfe6c241196c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12831"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffaebe32-7007-43e6-9ec2-1b0612543159"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:ffaebe32-7007-43e6-9ec2-1b0612543159"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "973"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "308d8afd-d566-4289-a293-719ea5371508"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12830"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec6372ec-d7d5-42ba-9271-1760f7935b1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:ec6372ec-d7d5-42ba-9271-1760f7935b1b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1135"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "66b10997-3e7c-4711-ab2f-84f6608a9a9e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12829"
+ ],
+ "x-ms-correlation-request-id": [
+ "809a7805-8d39-4361-a927-91e1ca23842a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:809a7805-8d39-4361-a927-91e1ca23842a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99665a96-7152-4605-b2ba-1f09dc1a4c17"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12828"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c15afec-5639-4c2e-bf03-fdc1b09f3bc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:4c15afec-5639-4c2e-bf03-fdc1b09f3bc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "37d54c43-acce-42b6-b613-a07c1aa5259b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12827"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3557bb7-966e-4a0c-83ee-f67e0ef49aec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:f3557bb7-966e-4a0c-83ee-f67e0ef49aec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "416540f6-8ebf-4def-a09e-53b42a9ce565"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12826"
+ ],
+ "x-ms-correlation-request-id": [
+ "27bcb022-0ca8-4668-914f-7bd8d6f4e572"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212629Z:27bcb022-0ca8-4668-914f-7bd8d6f4e572"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b6e2309-42e6-41ad-9c18-332d13e95dab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12825"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dd47bfb-9b88-41d3-b2fd-843bed4c854c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:4dd47bfb-9b88-41d3-b2fd-843bed4c854c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1115"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69c59b7f-7b9e-4f23-828c-6a8414bb5feb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12824"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7c7abe7-426d-46b0-97dd-915ff175c581"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:d7c7abe7-426d-46b0-97dd-915ff175c581"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "382"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "29749b27-0ad9-468e-b244-4a0ce849580e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12823"
+ ],
+ "x-ms-correlation-request-id": [
+ "77b61e6d-f77d-4025-b74f-7bc3f91e1d3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:77b61e6d-f77d-4025-b74f-7bc3f91e1d3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "382"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5318f8d-fcb3-4bd3-8d81-d077ec411516"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12822"
+ ],
+ "x-ms-correlation-request-id": [
+ "5346a1c2-d654-4b99-9b05-b1c3d2ec53b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:5346a1c2-d654-4b99-9b05-b1c3d2ec53b6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:29 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "382"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5e2ecae-2063-45ba-b827-242ba6d5e5db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12821"
+ ],
+ "x-ms-correlation-request-id": [
+ "f7da52d1-b892-4175-82d1-4cbc8c6d9ca2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:f7da52d1-b892-4175-82d1-4cbc8c6d9ca2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "382"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b1a2545-cbaa-424e-b147-ea52d38357cd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12820"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb011d3f-a143-4709-bed2-ddcf6319b3a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:cb011d3f-a143-4709-bed2-ddcf6319b3a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "326e5f48-b3d8-4a26-8795-355a56c98f98"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12819"
+ ],
+ "x-ms-correlation-request-id": [
+ "743105a9-be60-4249-80f1-1c25a79714b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:743105a9-be60-4249-80f1-1c25a79714b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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==",
+ "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\": \"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]",
+ "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": [
+ "99f275e9-0372-4f1d-b259-6b6236db39a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12818"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9880537-6d59-41a3-8192-3b5bcdf3c658"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:b9880537-6d59-41a3-8192-3b5bcdf3c658"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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=",
+ "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\": \"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}",
+ "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": [
+ "53b29e67-af9f-4e4e-8ffd-b41184e2b8f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12817"
+ ],
+ "x-ms-correlation-request-id": [
+ "ecfb237c-47d0-42aa-b24c-073059f668e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212630Z:ecfb237c-47d0-42aa-b24c-073059f668e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bd53f3a0-78c1-42a0-965a-5a541965ee68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12816"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cacb55a-46e5-4d57-9e04-34894b55fcc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:7cacb55a-46e5-4d57-9e04-34894b55fcc7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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==",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "974"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "02a6be61-d9e2-4153-9c06-396f1032e2fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12815"
+ ],
+ "x-ms-correlation-request-id": [
+ "9617b711-f6a7-4d8e-9bb8-56bba271dd74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:9617b711-f6a7-4d8e-9bb8-56bba271dd74"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "310"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4b16341-e971-4a73-8fda-4bb27a23d396"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12814"
+ ],
+ "x-ms-correlation-request-id": [
+ "3a3a1213-551c-4c4b-944d-10319f90ca02"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:3a3a1213-551c-4c4b-944d-10319f90ca02"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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",
+ "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 \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "976"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e0720946-90d0-4d51-a7c6-0cd39560547d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12813"
+ ],
+ "x-ms-correlation-request-id": [
+ "61ee486a-5b02-43d0-9a6f-64c099aa8f24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:61ee486a-5b02-43d0-9a6f-64c099aa8f24"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:30 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f0edc1ec-b2da-496c-8cd9-784598d9509b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12812"
+ ],
+ "x-ms-correlation-request-id": [
+ "b2aef951-4df5-44ae-b12c-32cbde36b2ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:b2aef951-4df5-44ae-b12c-32cbde36b2ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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",
+ "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\": \"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}",
+ "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": [
+ "06c91cff-1f93-4f35-9466-272a8b4558e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12811"
+ ],
+ "x-ms-correlation-request-id": [
+ "2700bea2-8742-4e6d-b17e-eecce5a643b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:2700bea2-8742-4e6d-b17e-eecce5a643b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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",
+ "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\": \"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]",
+ "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": [
+ "e5589122-79f8-446a-a784-368e961eaaea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12810"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7ee7309-618d-4e2d-9313-3111d4ca5bee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:e7ee7309-618d-4e2d-9313-3111d4ca5bee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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==",
+ "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\": \"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}",
+ "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": [
+ "d7e9f592-3112-4798-b7a6-d4c08becf249"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12809"
+ ],
+ "x-ms-correlation-request-id": [
+ "3399ff82-079c-4aa7-832b-9e3bfc4118cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:3399ff82-079c-4aa7-832b-9e3bfc4118cd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9ba647e-3f78-4877-98b9-db10fdf1132b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12808"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d30e925-bc25-4b67-89e4-cb0074f3c331"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:1d30e925-bc25-4b67-89e4-cb0074f3c331"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30879b94-c614-49fa-82f4-cd32cc976259"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12807"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b996b5a-d90f-4ecd-907c-482739d54efc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212631Z:5b996b5a-d90f-4ecd-907c-482739d54efc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "391"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f9e727b8-16c3-4cce-b5ba-643f9476ec44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12806"
+ ],
+ "x-ms-correlation-request-id": [
+ "93fc5499-1fcb-489f-985e-3b45cc9183ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:93fc5499-1fcb-489f-985e-3b45cc9183ed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "765"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4ee11970-ae3f-4b35-8dab-d77de378d62b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12805"
+ ],
+ "x-ms-correlation-request-id": [
+ "f53700af-d48a-4304-9867-d63d383bb994"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:f53700af-d48a-4304-9867-d63d383bb994"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "da1e368d-378e-47d3-aab3-c4dff6045edb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12804"
+ ],
+ "x-ms-correlation-request-id": [
+ "97904b66-2605-44fa-84be-59eb296aef32"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:97904b66-2605-44fa-84be-59eb296aef32"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "899"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee3b80e9-1ce3-446d-8ac4-0d0f47deaf47"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12803"
+ ],
+ "x-ms-correlation-request-id": [
+ "f45b8089-f73a-4e3c-921b-e42442600a6a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:f45b8089-f73a-4e3c-921b-e42442600a6a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:31 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f42383f0-f139-4e10-90b2-038c93711bec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12802"
+ ],
+ "x-ms-correlation-request-id": [
+ "2526c95c-47b0-4a9e-99f4-1f750db77e9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:2526c95c-47b0-4a9e-99f4-1f750db77e9c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72c8957a-2a1f-4437-afba-ef64d021974f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12801"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b27304f-7f0f-4a3e-afdd-5aa6394a9e1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:5b27304f-7f0f-4a3e-afdd-5aa6394a9e1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d2ac2635-a8cf-4e4d-b465-b34710d5d485"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12800"
+ ],
+ "x-ms-correlation-request-id": [
+ "d08a9fd4-d717-4417-993a-ab9329d3b385"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:d08a9fd4-d717-4417-993a-ab9329d3b385"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "9959"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7ba38816-0b9c-4aaf-b910-8a2330ea803d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12799"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bbf8c05-9936-4b84-8621-6af9274ff846"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:4bbf8c05-9936-4b84-8621-6af9274ff846"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "321"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b5ec8e6-95df-46c3-a3eb-78d5486532aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12798"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fb5145f-d1a4-4687-9f0b-aa286d0f5967"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:1fb5145f-d1a4-4687-9f0b-aa286d0f5967"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "422"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b6974169-f592-4f28-8c03-714fb8995a52"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12797"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a974df5-f507-4178-9d5e-f7db1de93357"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212632Z:5a974df5-f507-4178-9d5e-f7db1de93357"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6b76f04-e82d-4970-b538-f0f29c11997f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12796"
+ ],
+ "x-ms-correlation-request-id": [
+ "2984f471-53cb-4756-bc52-77eeb7934319"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:2984f471-53cb-4756-bc52-77eeb7934319"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "075e2316-f261-4616-802b-256b7dfe0842"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12795"
+ ],
+ "x-ms-correlation-request-id": [
+ "8b6f176b-041c-41d9-ad64-931a08ebb823"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:8b6f176b-041c-41d9-ad64-931a08ebb823"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "320"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9cc1beb-d9b5-4ced-b96b-9218e1f19213"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12794"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b7ff06d-ebb0-4db6-bfca-3111df824eeb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:3b7ff06d-ebb0-4db6-bfca-3111df824eeb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "421"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b043004-bd6a-42f4-90be-59c48016edfb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12793"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d212eec-b837-4fa5-959d-4c92ae9f4aac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:1d212eec-b837-4fa5-959d-4c92ae9f4aac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "306"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "11809b5e-a060-4e1b-82b0-eb9cc1e702a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12792"
+ ],
+ "x-ms-correlation-request-id": [
+ "910c6c59-19ad-4f57-b9d9-09294c52b803"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:910c6c59-19ad-4f57-b9d9-09294c52b803"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:32 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a9e275c1-3a73-4b69-87dd-2f0070e92a85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12791"
+ ],
+ "x-ms-correlation-request-id": [
+ "394592a2-f39a-4fc9-aa6d-8c04eeb0e872"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:394592a2-f39a-4fc9-aa6d-8c04eeb0e872"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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=",
+ "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\": \"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]",
+ "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": [
+ "3dea83db-2ff7-409a-8e8a-2a2b33f72709"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12790"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7569915-88e9-4f16-907b-595dfdbbfcda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:d7569915-88e9-4f16-907b-595dfdbbfcda"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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==",
+ "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\": \"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}",
+ "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": [
+ "01403bc9-c77b-4fe4-ba21-07de5703020e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12789"
+ ],
+ "x-ms-correlation-request-id": [
+ "6665da87-96dc-43a3-b723-28734a4ca72a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:6665da87-96dc-43a3-b723-28734a4ca72a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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=",
+ "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\": \"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]",
+ "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": [
+ "42abbcce-559f-4653-9fa5-d07cefaad1d7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12788"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fed91c2-dc4e-4b79-b7ec-0e4701ca40c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:7fed91c2-dc4e-4b79-b7ec-0e4701ca40c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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==",
+ "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\": \"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}",
+ "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": [
+ "5c0d8ef0-2f0d-4e9d-8d49-b55b7b5464b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12787"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fe70daf-0d87-4cc6-9067-6df7c9e28c5e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212633Z:6fe70daf-0d87-4cc6-9067-6df7c9e28c5e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "317"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd5e3a45-2993-4bda-aaed-2c7c55c3e531"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12786"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a3dfeeb-d60a-4641-ab32-51db88e8f02b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:2a3dfeeb-d60a-4641-ab32-51db88e8f02b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "418"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4abb6b90-93bc-4a38-b2ad-b70afd539077"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12785"
+ ],
+ "x-ms-correlation-request-id": [
+ "79c61c06-eef6-4837-8e80-e4f6a1824487"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:79c61c06-eef6-4837-8e80-e4f6a1824487"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:33 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "32f55ebf-6b98-4904-b125-afe1cc894555"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12784"
+ ],
+ "x-ms-correlation-request-id": [
+ "98309f03-b46f-43c0-a484-1db0257cec69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:98309f03-b46f-43c0-a484-1db0257cec69"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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=",
+ "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\": \"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}",
+ "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": [
+ "c492854a-f5a9-4d43-b843-9156fdecd563"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12783"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb276aa6-335c-4c6d-b42b-914ee99e719c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:bb276aa6-335c-4c6d-b42b-914ee99e719c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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",
+ "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\": \"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]",
+ "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": [
+ "4d60df99-1e7c-4589-919b-7584184ce4cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12782"
+ ],
+ "x-ms-correlation-request-id": [
+ "56126d10-5080-4d69-a557-3cf562eefb24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:56126d10-5080-4d69-a557-3cf562eefb24"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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=",
+ "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\": \"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}",
+ "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": [
+ "455c4d62-ffaa-48ec-9c36-bfc363cc9217"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12781"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5689da3-afa2-4ded-86ff-064338254006"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:f5689da3-afa2-4ded-86ff-064338254006"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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",
+ "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\": \"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]",
+ "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": [
+ "7a7dff72-1b19-431f-aabf-c50f5b6ba305"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12780"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb578500-11cf-4c54-986f-9a8f2e3e9e56"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212634Z:bb578500-11cf-4c54-986f-9a8f2e3e9e56"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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=",
+ "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\": \"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}",
+ "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": [
+ "bd19a0da-8418-4acd-9038-4d54533c4f45"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12779"
+ ],
+ "x-ms-correlation-request-id": [
+ "3584cfdb-76aa-456f-a255-0f417e620aa1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:3584cfdb-76aa-456f-a255-0f417e620aa1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a169ad2e-9448-441c-989c-d08e3d52a9ba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12778"
+ ],
+ "x-ms-correlation-request-id": [
+ "d107f189-7bc3-4b38-917a-a6c1aa87f95f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:d107f189-7bc3-4b38-917a-a6c1aa87f95f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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",
+ "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\": \"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}",
+ "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": [
+ "7a3cdff8-d653-4766-834c-6f17d1938ec1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12777"
+ ],
+ "x-ms-correlation-request-id": [
+ "442cac8b-5252-4f6e-a745-edd0fa05af3c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:442cac8b-5252-4f6e-a745-edd0fa05af3c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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=",
+ "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\": \"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]",
+ "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": [
+ "1cac0e71-b117-40d1-a867-a3fd2ec190e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12776"
+ ],
+ "x-ms-correlation-request-id": [
+ "08a33b70-a7a1-4231-82a0-d1b69fd85026"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:08a33b70-a7a1-4231-82a0-d1b69fd85026"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c8c9c9fa-3d72-42a8-b177-104bc7c95811"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12775"
+ ],
+ "x-ms-correlation-request-id": [
+ "3346363f-da31-4d36-8acd-1c518b6a0c7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:3346363f-da31-4d36-8acd-1c518b6a0c7f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:34 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de94c2e6-dd84-454f-a0b7-c6e7ca9c51a0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12774"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb7cd471-4f58-4b3b-bb57-780e29769b07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:eb7cd471-4f58-4b3b-bb57-780e29769b07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "46ee4360-defe-4ccb-aca7-68d01e6cd293"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12773"
+ ],
+ "x-ms-correlation-request-id": [
+ "26c24aa5-fd20-4586-983d-d5358c32a9de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:26c24aa5-fd20-4586-983d-d5358c32a9de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "230a0456-1f92-4192-b0dd-77ef134a1719"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12772"
+ ],
+ "x-ms-correlation-request-id": [
+ "04a88a4d-c0bf-4325-b82c-bc9c96677fc5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:04a88a4d-c0bf-4325-b82c-bc9c96677fc5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b7a5fd83-2928-4f09-9a4b-db221f72c352"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12771"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c48b163-1a3e-412d-971a-777554138966"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212635Z:1c48b163-1a3e-412d-971a-777554138966"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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",
+ "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.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]",
+ "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": [
+ "62e1768d-88ce-464b-9a87-8ef2ed09f2a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12770"
+ ],
+ "x-ms-correlation-request-id": [
+ "8edac291-3b3f-4408-a77c-e0f6e9a86b45"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:8edac291-3b3f-4408-a77c-e0f6e9a86b45"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "383"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b232cb7-aca4-4a1a-8988-d13a03bf7348"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12769"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fb0284d-e41c-49bf-a128-a4fb66cbd265"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:5fb0284d-e41c-49bf-a128-a4fb66cbd265"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "327"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "105ae87c-5d25-464f-8500-7cebc8488c3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12768"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f4e44c5-496c-4923-bdee-23268749d058"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:4f4e44c5-496c-4923-bdee-23268749d058"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "428"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "215c6c41-e2fa-4ec5-97b8-bac18c423955"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12767"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed8fe5c4-368a-40b8-8aa2-ac3dfa7338be"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:ed8fe5c4-368a-40b8-8aa2-ac3dfa7338be"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "323"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c3fe9d1-934e-4f4d-a25e-8be2c235ea5f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12766"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8ca8d5e-b3b4-43cd-9459-df139898b6cb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:e8ca8d5e-b3b4-43cd-9459-df139898b6cb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:35 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "424"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3c752cd-985a-407a-8b6f-713efe61d4a9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12765"
+ ],
+ "x-ms-correlation-request-id": [
+ "37a6cf75-7e53-4116-81a5-a2ed1771d705"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:37a6cf75-7e53-4116-81a5-a2ed1771d705"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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",
+ "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\": \"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]",
+ "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": [
+ "2409d0b5-df1c-4fbc-abfc-7afb62e75d02"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12764"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcad2e2a-5079-4e9c-8072-1c3386f2142e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:bcad2e2a-5079-4e9c-8072-1c3386f2142e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d0f81320-f4e2-4d6b-a955-2ba6fcf1a545"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12763"
+ ],
+ "x-ms-correlation-request-id": [
+ "a50baa96-3e30-4a8d-bf32-48c778e8be05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:a50baa96-3e30-4a8d-bf32-48c778e8be05"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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",
+ "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\": \"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]",
+ "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": [
+ "d79d8016-0adc-4d0f-85cc-cebe181ccdf5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12762"
+ ],
+ "x-ms-correlation-request-id": [
+ "2081d0aa-3a95-4777-864b-8be00ff28e13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:2081d0aa-3a95-4777-864b-8be00ff28e13"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "068567f6-8deb-44f6-8b03-0f4275c3635e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12761"
+ ],
+ "x-ms-correlation-request-id": [
+ "6fc3ce21-2e65-4507-a5cc-9b7b4d5c706f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:6fc3ce21-2e65-4507-a5cc-9b7b4d5c706f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "321"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "363928ca-8c69-4859-a9fc-79bebc1c6594"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12760"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6adb1a7-6729-47d5-abfc-5fc1a10a1225"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212636Z:b6adb1a7-6729-47d5-abfc-5fc1a10a1225"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "422"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ed480e6-1d41-4f6b-a031-e28bff4c52cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12759"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0c5a861-b713-4be4-b73d-a6975a202fd0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:b0c5a861-b713-4be4-b73d-a6975a202fd0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "326"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b5973291-1b95-40eb-85bb-a0f015cbea3b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12758"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3dbfd9c-b509-4d0e-a9f8-7d4688277801"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:e3dbfd9c-b509-4d0e-a9f8-7d4688277801"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "256c1912-ffda-4fef-8793-794195556c7c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12757"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ad09bc8-5dce-4675-8310-3c304bc1c913"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:6ad09bc8-5dce-4675-8310-3c304bc1c913"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "326"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44ac885b-93c9-4bb1-8918-caa22a718d90"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12756"
+ ],
+ "x-ms-correlation-request-id": [
+ "0bd3ec95-909b-40d1-ac1e-f97901419c4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:0bd3ec95-909b-40d1-ac1e-f97901419c4e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "427"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "587835ab-dfe1-4ab9-ae39-bf98498a9773"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12755"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ea864db-dfa5-4bc1-a709-4d181a109260"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:8ea864db-dfa5-4bc1-a709-4d181a109260"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:36 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "322"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb7bef9c-061e-4be5-b733-d55686848cac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12754"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a4ef705-c8c7-4b30-8792-6d4ec4d6b084"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:9a4ef705-c8c7-4b30-8792-6d4ec4d6b084"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "423"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69a00d7b-0c7d-470f-8884-a34e849edd96"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12753"
+ ],
+ "x-ms-correlation-request-id": [
+ "01df2880-d391-4f3a-b9df-df00f73dc6bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:01df2880-d391-4f3a-b9df-df00f73dc6bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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=",
+ "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\": \"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]",
+ "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": [
+ "90fabbe3-cccd-4190-863b-b658c4b5e5de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12752"
+ ],
+ "x-ms-correlation-request-id": [
+ "fff8e548-1724-4cc0-b3ef-75f39abd1ba8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:fff8e548-1724-4cc0-b3ef-75f39abd1ba8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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==",
+ "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\": \"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}",
+ "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": [
+ "e67b403d-5849-4e83-8f1a-304379bfe24a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12751"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c8ced1a-518f-4b24-95f6-5435fe79d9da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:2c8ced1a-518f-4b24-95f6-5435fe79d9da"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "322"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89d11a07-dd7a-45b2-bdb1-ab4e826106a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12750"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea8286b9-43da-49d5-9370-6b057c59db54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212637Z:ea8286b9-43da-49d5-9370-6b057c59db54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "423"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e11ef54-138d-4965-beb3-2818dd9f582e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12749"
+ ],
+ "x-ms-correlation-request-id": [
+ "6129d400-11ab-4b9f-9caf-a5faaadad309"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:6129d400-11ab-4b9f-9caf-a5faaadad309"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "318"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "73d90d2e-3ac8-4e70-b67e-2be70d47328f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12748"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e03b73b-5c13-45f2-b494-a12a36230193"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:0e03b73b-5c13-45f2-b494-a12a36230193"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9cae46a9-4751-491d-be26-36b3df8a020c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12747"
+ ],
+ "x-ms-correlation-request-id": [
+ "897e5dd2-0da3-42f5-98ff-2ee9aea38445"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:897e5dd2-0da3-42f5-98ff-2ee9aea38445"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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",
+ "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\": \"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]",
+ "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": [
+ "cf5e685a-39a5-4512-9981-6381eb3ea676"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12746"
+ ],
+ "x-ms-correlation-request-id": [
+ "4dda89ed-0522-4d45-9c68-e40572222f5a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:4dda89ed-0522-4d45-9c68-e40572222f5a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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=",
+ "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\": \"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}",
+ "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": [
+ "e9277936-a4ae-4c20-b95e-22927b3d9cbf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12745"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a386755-bbac-4b1b-b896-dc49789b43f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:2a386755-bbac-4b1b-b896-dc49789b43f6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "323"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3187d6d2-87cf-4379-ba49-cc572274cc11"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12744"
+ ],
+ "x-ms-correlation-request-id": [
+ "f18f3356-9fb4-4ae8-a125-67133a228cf1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:f18f3356-9fb4-4ae8-a125-67133a228cf1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:37 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "424"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "37815fe8-d180-4b19-84e4-19a6500627b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12743"
+ ],
+ "x-ms-correlation-request-id": [
+ "66c57dc1-11c9-4094-ab87-89429147e90a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:66c57dc1-11c9-4094-ab87-89429147e90a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "319"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "257d14fa-b912-4024-bc24-d8b368503d62"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12742"
+ ],
+ "x-ms-correlation-request-id": [
+ "b31b27e5-41a0-45e9-a24d-1d520f8aa0e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:b31b27e5-41a0-45e9-a24d-1d520f8aa0e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "420"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9a225277-df7b-4e32-bc69-b125fce18766"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12741"
+ ],
+ "x-ms-correlation-request-id": [
+ "fad3c140-d10f-4bcc-9767-616c409ab4e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:fad3c140-d10f-4bcc-9767-616c409ab4e3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "333"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5171adf2-d693-47ec-bc7d-8e63a02adeff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12740"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b9edce7-ef93-4573-8b08-f1e7b1395afb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212638Z:9b9edce7-ef93-4573-8b08-f1e7b1395afb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "434"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dab5726a-cca1-4976-8c4d-24a685f8b1a3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12739"
+ ],
+ "x-ms-correlation-request-id": [
+ "55c2ca46-95f1-4d28-9576-37c846df5b16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:55c2ca46-95f1-4d28-9576-37c846df5b16"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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",
+ "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\": \"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]",
+ "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": [
+ "f0d87d80-1bc3-4d86-89f4-f3dbe08c4ca8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12738"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4324f2a-5901-4af4-9050-b822657d8208"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:b4324f2a-5901-4af4-9050-b822657d8208"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dad5d70f-d078-402b-a90b-1bae50f59b26"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12737"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0ad9f3a-6bf1-47cd-80b7-547f2634a7a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:d0ad9f3a-6bf1-47cd-80b7-547f2634a7a0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1625"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c4aaf1d7-75cf-4d4c-9fb9-f14408cd6b20"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12736"
+ ],
+ "x-ms-correlation-request-id": [
+ "14586a35-7c90-4605-8bcc-582a410360d1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:14586a35-7c90-4605-8bcc-582a410360d1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc115bfe-c34d-48b3-8dbe-cf7cdd0b1053"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12735"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e74cf73-b630-4462-aed1-3bff53fe8519"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:0e74cf73-b630-4462-aed1-3bff53fe8519"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "446cefae-8af5-4480-8266-2bd606e3e83e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12734"
+ ],
+ "x-ms-correlation-request-id": [
+ "6247d6df-16cb-4313-aec4-c950aa1091e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:6247d6df-16cb-4313-aec4-c950aa1091e0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:38 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6f394c17-74d8-45fa-a4cb-7d25421de691"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12733"
+ ],
+ "x-ms-correlation-request-id": [
+ "b266d1c0-b9c7-4ca8-a02d-6505fac9d1c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:b266d1c0-b9c7-4ca8-a02d-6505fac9d1c6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "388"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "366e5505-d1c3-4ac3-8af1-d5be920f04ce"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12732"
+ ],
+ "x-ms-correlation-request-id": [
+ "e161622f-d366-47df-938f-17dc9ab939ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:e161622f-d366-47df-938f-17dc9ab939ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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",
+ "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\": \"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]",
+ "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": [
+ "53197638-b0d6-4ba4-b7fb-f3153c1bfe79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12731"
+ ],
+ "x-ms-correlation-request-id": [
+ "d899bd53-edeb-4b3c-a581-99fe08255b1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:d899bd53-edeb-4b3c-a581-99fe08255b1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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}",
+ "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": [
+ "e1357687-d68c-4fca-ba12-e524c1e1602d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12730"
+ ],
+ "x-ms-correlation-request-id": [
+ "b44c7ad9-5895-431a-98fa-ad8aea07112e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:b44c7ad9-5895-431a-98fa-ad8aea07112e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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}",
+ "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": [
+ "7191959c-29c8-4dfa-8dc5-ce390e2fd8bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12729"
+ ],
+ "x-ms-correlation-request-id": [
+ "6877b1fe-d717-4009-b93f-b5b22621b4c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212639Z:6877b1fe-d717-4009-b93f-b5b22621b4c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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]",
+ "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": [
+ "d4561470-be98-41a9-bec1-7e1c7626369d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12728"
+ ],
+ "x-ms-correlation-request-id": [
+ "9514c2ba-c2fd-403d-ac69-69df5568f7da"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:9514c2ba-c2fd-403d-ac69-69df5568f7da"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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}",
+ "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": [
+ "0c29a952-654e-419f-a5e7-d33048ca70f9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12727"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d2ba649-0a10-48a3-aac6-3379b6e1c67f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:7d2ba649-0a10-48a3-aac6-3379b6e1c67f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "577"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae835758-a9b5-4c85-ae41-bd405f7761fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12726"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b8a6674-50e4-4234-8ef1-3d50e3402da2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:5b8a6674-50e4-4234-8ef1-3d50e3402da2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d3b8f6f5-81e8-458a-aaa1-db16435a5bc2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12725"
+ ],
+ "x-ms-correlation-request-id": [
+ "432faebd-d0b6-4133-b739-778616ba0820"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:432faebd-d0b6-4133-b739-778616ba0820"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4a9313a-78c8-448b-867d-65b61f328466"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12724"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bebab6e-3142-4fa7-82bb-ef787a9f1710"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:4bebab6e-3142-4fa7-82bb-ef787a9f1710"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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]",
+ "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": [
+ "5ed44794-c5d2-4f30-9bb2-c9a79a490086"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12723"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e7b2b46-5aa9-4c57-bfe2-6ffb09836ade"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:9e7b2b46-5aa9-4c57-bfe2-6ffb09836ade"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:39 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=",
+ "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\": \"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}",
+ "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": [
+ "6818a940-cbce-49aa-9d54-3619c586579d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12722"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b673f7d-419d-4def-8699-6d1a5eeb7bfe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:7b673f7d-419d-4def-8699-6d1a5eeb7bfe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "577"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fadb45f5-7d15-442e-bec3-2abd1091a164"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12721"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb86bbbc-ce96-4a33-9144-96bfff7ab904"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:cb86bbbc-ce96-4a33-9144-96bfff7ab904"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67c20b88-b8f1-43a7-ba19-832c76599c2a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12720"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5001f3f-1018-4a89-920c-caa838354119"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:b5001f3f-1018-4a89-920c-caa838354119"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fe6ff787-e4aa-477f-9f2a-eaad811ae11c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12719"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3e6ad36-59a6-454f-bbf2-fd81f69d0426"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212640Z:e3e6ad36-59a6-454f-bbf2-fd81f69d0426"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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=",
+ "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\": \"WindowsServer\",\r\n \"id\": \"/Subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/Providers/Microsoft.Compute/Locations/westus/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "258"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a3660d3-5b29-4ca7-94c8-45fa90ad83c2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12718"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e134cec-71ed-462f-bf62-958e06237630"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:9e134cec-71ed-462f-bf62-958e06237630"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1147"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72cf35be-ebbd-4026-8090-589aa76d5ed7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12717"
+ ],
+ "x-ms-correlation-request-id": [
+ "51fe4c5d-82ff-4bc0-abda-152bae5926b2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:51fe4c5d-82ff-4bc0-abda-152bae5926b2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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",
+ "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\": \"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]",
+ "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": [
+ "9e7b4d6d-642e-48cd-8877-8b0adb8de18e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12716"
+ ],
+ "x-ms-correlation-request-id": [
+ "b48295ec-2a4b-47e7-be65-318e965d5bd9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:b48295ec-2a4b-47e7-be65-318e965d5bd9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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=",
+ "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\": \"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}",
+ "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": [
+ "bc6f69e5-e6fa-4ec7-a885-4f112f271ada"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12715"
+ ],
+ "x-ms-correlation-request-id": [
+ "feb039a2-1804-478f-8709-8b454d325ccd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:feb039a2-1804-478f-8709-8b454d325ccd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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=",
+ "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\": \"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}",
+ "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": [
+ "cfd1f04d-a6f0-4ef3-8320-7ab3b34b368d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12714"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d1b37a4-236f-4409-97f6-8c3e719d39f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:1d1b37a4-236f-4409-97f6-8c3e719d39f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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==",
+ "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\": \"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}",
+ "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": [
+ "12604b41-5989-41d2-b04c-85065531dcef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12713"
+ ],
+ "x-ms-correlation-request-id": [
+ "73676a98-8f40-475d-8510-009ea58d2554"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:73676a98-8f40-475d-8510-009ea58d2554"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "886"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1b0e7ec8-76e0-4472-bbc7-847f1687e82c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12712"
+ ],
+ "x-ms-correlation-request-id": [
+ "930fa7c0-b3c8-49ab-b7f3-bbdc621046c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:930fa7c0-b3c8-49ab-b7f3-bbdc621046c8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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}",
+ "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": [
+ "b347568e-4e8d-40a3-a0fb-32c2e021770f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12711"
+ ],
+ "x-ms-correlation-request-id": [
+ "67793654-abc5-4113-a263-3830f281f359"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:67793654-abc5-4113-a263-3830f281f359"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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}",
+ "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": [
+ "81f1097d-68fc-429d-9817-db250e49f1c1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12710"
+ ],
+ "x-ms-correlation-request-id": [
+ "98a304fe-05cd-407c-92b3-b5a2a78661a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:98a304fe-05cd-407c-92b3-b5a2a78661a8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3faafe4b-d275-462a-920c-0d7ae0422283"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12709"
+ ],
+ "x-ms-correlation-request-id": [
+ "5d95d014-cde7-4a17-a6ef-28d837d1589e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212641Z:5d95d014-cde7-4a17-a6ef-28d837d1589e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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==",
+ "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\": \"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]",
+ "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": [
+ "df8de651-46a6-4527-933b-feece4353f3e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12708"
+ ],
+ "x-ms-correlation-request-id": [
+ "089dc088-cffb-4065-9181-6ff9f3ce26f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:089dc088-cffb-4065-9181-6ff9f3ce26f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0c445ff6-e6d4-4610-b932-e52d5c407b8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12707"
+ ],
+ "x-ms-correlation-request-id": [
+ "c38300ed-9e78-40a8-b6dd-ae7c7a868dc5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:c38300ed-9e78-40a8-b6dd-ae7c7a868dc5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8f4432ac-16f7-4744-a906-ea6b6845226c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12706"
+ ],
+ "x-ms-correlation-request-id": [
+ "9974b61e-b474-4e19-a547-d833a9ba7b17"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:9974b61e-b474-4e19-a547-d833a9ba7b17"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bdafc09e-b401-48c6-9df1-2ef89b04f50f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12705"
+ ],
+ "x-ms-correlation-request-id": [
+ "840e0e4c-34ef-4652-90ea-dd6e1202eea6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:840e0e4c-34ef-4652-90ea-dd6e1202eea6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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]",
+ "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": [
+ "d1516b8f-25e7-41f2-8689-c7248688b220"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12704"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bc6f138-03af-422f-9f0b-e350f388cf40"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:8bc6f138-03af-422f-9f0b-e350f388cf40"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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=",
+ "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\": \"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}",
+ "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": [
+ "9040d95e-0b35-40b0-8124-c3a88a3bdc48"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12703"
+ ],
+ "x-ms-correlation-request-id": [
+ "16b5c6bd-6c8e-41e5-9a61-3f59fe512d57"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:16b5c6bd-6c8e-41e5-9a61-3f59fe512d57"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "be389b0a-10bd-4ec2-a75a-6654eea3e4fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12702"
+ ],
+ "x-ms-correlation-request-id": [
+ "4721501d-e2bd-4bad-b40e-0d6f373e5245"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:4721501d-e2bd-4bad-b40e-0d6f373e5245"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:41 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "317"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3310f53f-9ca8-484e-b6d2-ec157acbb682"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12701"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1027dd7-de11-4a91-93be-faff726ecfa5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:e1027dd7-de11-4a91-93be-faff726ecfa5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2928"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aea57dca-e36b-4e07-97b2-642771fe5f87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12700"
+ ],
+ "x-ms-correlation-request-id": [
+ "178646ea-d2c4-49c0-bc8f-e9ab2fec7007"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:178646ea-d2c4-49c0-bc8f-e9ab2fec7007"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "880c4f5f-3aba-4cd5-bc89-13e23e58b1d9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12699"
+ ],
+ "x-ms-correlation-request-id": [
+ "64165b36-99da-4047-876c-c87f8ef4736f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212642Z:64165b36-99da-4047-876c-c87f8ef4736f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "95367e75-0128-4562-9a74-e4ba162c0506"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12698"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae4934ea-8374-4c47-97dc-8e1f0067e5ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:ae4934ea-8374-4c47-97dc-8e1f0067e5ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "649f868f-d7c6-4461-98c9-57c884c58300"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12697"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa0b47aa-d67f-49c2-b9ec-20e9bbaea4ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:aa0b47aa-d67f-49c2-b9ec-20e9bbaea4ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69362802-5dc5-4958-aba1-b85793ad779c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12696"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0306a50-c6b2-4076-aa7d-188cb8705804"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:d0306a50-c6b2-4076-aa7d-188cb8705804"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c4699ab8-dbba-4527-8632-87b4a47d3f43"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12695"
+ ],
+ "x-ms-correlation-request-id": [
+ "4babf962-8f25-4632-91d4-a3ba312f103d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:4babf962-8f25-4632-91d4-a3ba312f103d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0ed1fcb7-3b40-4ae5-985d-4179596d4be5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12694"
+ ],
+ "x-ms-correlation-request-id": [
+ "23334c34-fc86-4ce4-81c0-2b4d4368966d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:23334c34-fc86-4ce4-81c0-2b4d4368966d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "febd7170-0ac7-435e-9f3e-cca7b3218f4c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12693"
+ ],
+ "x-ms-correlation-request-id": [
+ "39918f75-ad91-472f-a99f-f627263b865c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:39918f75-ad91-472f-a99f-f627263b865c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4ef45eb7-a571-48c7-82e7-d83cb6bff5de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12692"
+ ],
+ "x-ms-correlation-request-id": [
+ "e45b76ce-6da4-4213-85a9-550a5c35932b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212643Z:e45b76ce-6da4-4213-85a9-550a5c35932b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "429"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2630e0f7-eae6-45ca-9d70-58bfa6956673"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12691"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e797a24-e1b0-4275-bfe4-cdffb8484f4e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:5e797a24-e1b0-4275-bfe4-cdffb8484f4e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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]",
+ "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": [
+ "10efb290-b54c-41b3-8f7f-df7afb7704dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12690"
+ ],
+ "x-ms-correlation-request-id": [
+ "d26c132e-cf56-4cb4-9608-8d8af33f011e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:d26c132e-cf56-4cb4-9608-8d8af33f011e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1137"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54918a87-e2b3-4bb3-b381-699d58cf5858"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12689"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1586bb3-4805-40aa-8126-446d55cac727"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:e1586bb3-4805-40aa-8126-446d55cac727"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1767"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "55d623ff-8079-441b-85aa-d47a60442d08"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12688"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e9a1a22-690b-44ba-b511-c85ae9628d51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:8e9a1a22-690b-44ba-b511-c85ae9628d51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5444185b-815f-45ed-b9d7-fe0dde1cb3b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12687"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f819acf-e27f-4b86-a99c-002683ea137c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:8f819acf-e27f-4b86-a99c-002683ea137c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6243258-9124-4bf6-b0fd-f78521d8e3b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12686"
+ ],
+ "x-ms-correlation-request-id": [
+ "104ce376-45bc-4417-9236-d942b0627813"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:104ce376-45bc-4417-9236-d942b0627813"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7d9b0ffb-e939-443b-a7f7-d98527646ad0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12685"
+ ],
+ "x-ms-correlation-request-id": [
+ "05b6d061-2857-4fb8-83ba-3482507f1549"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:05b6d061-2857-4fb8-83ba-3482507f1549"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:43 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "915fc317-fb64-4f33-ba7d-da5cb7c375df"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12684"
+ ],
+ "x-ms-correlation-request-id": [
+ "342e73c0-f228-4543-9fd7-0463be547de4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:342e73c0-f228-4543-9fd7-0463be547de4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "201188a8-7d69-41ab-ad23-6a04e48d6073"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12683"
+ ],
+ "x-ms-correlation-request-id": [
+ "904d90c9-8be0-4194-9e16-969fb1589977"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:904d90c9-8be0-4194-9e16-969fb1589977"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "398"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "47b4f318-6b7c-406f-b44a-d7c2b8b215a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12682"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6985bec-0210-4d4b-834c-eddce389d6f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212644Z:b6985bec-0210-4d4b-834c-eddce389d6f9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "299"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "79ad03da-f4dc-4903-a5ff-893152806b82"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12681"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d52e297-8ff2-4931-82e0-9be7a94489e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:4d52e297-8ff2-4931-82e0-9be7a94489e0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "400"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "31ed8f22-6500-4f80-af6a-87c778ed2800"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12680"
+ ],
+ "x-ms-correlation-request-id": [
+ "c00a8c6c-c87e-4482-9d82-b6ede332a29e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:c00a8c6c-c87e-4482-9d82-b6ede332a29e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "17eb6a88-2f8d-479d-a319-643cd4da7ca9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12679"
+ ],
+ "x-ms-correlation-request-id": [
+ "b584f390-0390-4813-8a9e-62996a1336fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:b584f390-0390-4813-8a9e-62996a1336fa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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}",
+ "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": [
+ "717978a0-61a8-4251-b319-61cc3d6153a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12678"
+ ],
+ "x-ms-correlation-request-id": [
+ "47e7f4ea-0ee9-43cc-816c-799123b0c30e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:47e7f4ea-0ee9-43cc-816c-799123b0c30e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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]",
+ "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": [
+ "e59850c8-8a38-4a6e-8143-9be4d4ce40e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12677"
+ ],
+ "x-ms-correlation-request-id": [
+ "6263440e-175c-4213-a4be-8f85b9996460"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:6263440e-175c-4213-a4be-8f85b9996460"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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}",
+ "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": [
+ "55172e10-0f91-43e9-ad64-02dc0dc0c490"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12676"
+ ],
+ "x-ms-correlation-request-id": [
+ "79732af2-5664-4374-ae28-2c0ec0829d0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:79732af2-5664-4374-ae28-2c0ec0829d0c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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}",
+ "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": [
+ "19164ad8-a3d3-456c-b607-880323a2544b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12675"
+ ],
+ "x-ms-correlation-request-id": [
+ "34acc762-8b2a-4a16-83d8-dc1de8e40993"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:34acc762-8b2a-4a16-83d8-dc1de8e40993"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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==",
+ "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\": \"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}",
+ "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": [
+ "c81cf819-4477-448b-9692-afe8974c7582"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12674"
+ ],
+ "x-ms-correlation-request-id": [
+ "94ba0d4c-aa1b-45f3-9273-9a1858a212e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:94ba0d4c-aa1b-45f3-9273-9a1858a212e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:44 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",
+ "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\": \"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]",
+ "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": [
+ "d4793a00-cc45-4ca8-b44c-e6ec4e5d1aa8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12673"
+ ],
+ "x-ms-correlation-request-id": [
+ "61805d18-4722-4051-b30e-a890fdf691c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:61805d18-4722-4051-b30e-a890fdf691c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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",
+ "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\": \"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]",
+ "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": [
+ "50084525-830d-4c0e-8dc2-7fa1a7c8229d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12672"
+ ],
+ "x-ms-correlation-request-id": [
+ "2fe85028-3551-46bc-b51a-d6d981e61931"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212645Z:2fe85028-3551-46bc-b51a-d6d981e61931"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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",
+ "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\": \"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]",
+ "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": [
+ "ea213bf0-9b98-48f4-8f0a-894ee4a0c01c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12671"
+ ],
+ "x-ms-correlation-request-id": [
+ "3385bed5-9873-493f-aa07-9eee227bfe02"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:3385bed5-9873-493f-aa07-9eee227bfe02"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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==",
+ "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\": \"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}",
+ "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": [
+ "f22d7b1b-7e56-4a7d-9e88-ded595a2eb22"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12670"
+ ],
+ "x-ms-correlation-request-id": [
+ "46472098-58e6-4340-bdf1-23f95b74de07"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:46472098-58e6-4340-bdf1-23f95b74de07"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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==",
+ "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\": \"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}",
+ "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": [
+ "7e9c19b0-3834-4ecc-b99c-ae64f34ff9dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12669"
+ ],
+ "x-ms-correlation-request-id": [
+ "dfbf051a-4dc5-4503-b253-2d934a3da2f0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:dfbf051a-4dc5-4503-b253-2d934a3da2f0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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==",
+ "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\": \"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}",
+ "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": [
+ "e4afe84b-8d8d-4219-ac98-5f1b5c87468f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12668"
+ ],
+ "x-ms-correlation-request-id": [
+ "c651230f-bac4-47ae-9089-5b8e0bd6d322"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:c651230f-bac4-47ae-9089-5b8e0bd6d322"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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==",
+ "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\": \"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]",
+ "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": [
+ "3ab4a746-9caf-4f2e-a4b0-57181bbf3d0a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12667"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7ff35fb-fed1-4715-b892-0826aa51428e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:c7ff35fb-fed1-4715-b892-0826aa51428e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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=",
+ "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\": \"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}",
+ "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": [
+ "cb6d0362-d231-42d9-b653-3b327cc7357d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12666"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a7ee752-8200-4ab1-85c5-3a03afc511ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:9a7ee752-8200-4ab1-85c5-3a03afc511ee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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=",
+ "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\": \"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}",
+ "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": [
+ "ef57fe19-97ba-4214-be6a-e3baebb8665a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12665"
+ ],
+ "x-ms-correlation-request-id": [
+ "92c30f60-12bd-4dbb-95ea-957e34135808"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:92c30f60-12bd-4dbb-95ea-957e34135808"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:45 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=",
+ "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\": \"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}",
+ "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": [
+ "bc7994dc-7710-4dc8-8be9-9193396b58e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12664"
+ ],
+ "x-ms-correlation-request-id": [
+ "d29f1426-79b2-41b2-8f1b-02defd9d916a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:d29f1426-79b2-41b2-8f1b-02defd9d916a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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}",
+ "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": [
+ "a2b0c6e3-6c0c-4926-9407-ce94e85b1d27"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12663"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb7eb70e-9455-4d07-a3b2-83bf83f835a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:cb7eb70e-9455-4d07-a3b2-83bf83f835a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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==",
+ "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\": \"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]",
+ "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": [
+ "b53bd0b3-8539-48dd-9b20-8c70ee97d95e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12662"
+ ],
+ "x-ms-correlation-request-id": [
+ "93e6fb38-2513-46bf-b2ac-1b7b6213b8aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212646Z:93e6fb38-2513-46bf-b2ac-1b7b6213b8aa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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}",
+ "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": [
+ "cc717707-0fa3-4d2d-9d52-295ce89aae88"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12661"
+ ],
+ "x-ms-correlation-request-id": [
+ "88bfbc1b-b60c-49ad-b86c-96bafb5af525"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:88bfbc1b-b60c-49ad-b86c-96bafb5af525"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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}",
+ "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": [
+ "1e442e6a-47d4-45b3-9c6c-06ed64c67247"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12660"
+ ],
+ "x-ms-correlation-request-id": [
+ "664deb97-fdba-4f79-9622-a645a392ab83"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:664deb97-fdba-4f79-9622-a645a392ab83"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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}",
+ "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": [
+ "5d676c93-c8fd-4010-9273-4f3075ab573d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12659"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc9cb189-a333-42cc-8da3-33c1c8f5300b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:fc9cb189-a333-42cc-8da3-33c1c8f5300b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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==",
+ "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\": \"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]",
+ "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": [
+ "fb94f541-ad77-4943-a2ff-099ea09d57ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12658"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e1516aa-2c07-4a4e-8305-b7f2ad9e09e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:1e1516aa-2c07-4a4e-8305-b7f2ad9e09e9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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==",
+ "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\": \"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]",
+ "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": [
+ "05af8a05-2901-43a5-9eb3-a59fc2fb1417"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12657"
+ ],
+ "x-ms-correlation-request-id": [
+ "e27899e6-58f8-4eb8-9805-bfaa3a499240"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:e27899e6-58f8-4eb8-9805-bfaa3a499240"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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}",
+ "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": [
+ "e0a9c0b6-fbcb-4fe6-a78f-729a2a46fada"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12656"
+ ],
+ "x-ms-correlation-request-id": [
+ "58ac7a69-ce80-4b4c-8b5e-537d275bb125"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:58ac7a69-ce80-4b4c-8b5e-537d275bb125"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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]",
+ "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": [
+ "83ebf6e3-c8af-4aac-b250-6af86c34f6ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12655"
+ ],
+ "x-ms-correlation-request-id": [
+ "9deef623-2b93-4361-9693-79424cee1f43"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:9deef623-2b93-4361-9693-79424cee1f43"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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",
+ "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\": \"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}",
+ "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": [
+ "224aaa26-81f1-486b-9724-5a3a769cc48e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12654"
+ ],
+ "x-ms-correlation-request-id": [
+ "936b44a7-1d79-4822-ac94-7679f739d6e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:936b44a7-1d79-4822-ac94-7679f739d6e0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:46 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=",
+ "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\": \"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]",
+ "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": [
+ "2e07a606-d251-4a0c-a236-9b132dfa9682"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12653"
+ ],
+ "x-ms-correlation-request-id": [
+ "e7aa3d75-47a3-4adb-9940-b23f755e056f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:e7aa3d75-47a3-4adb-9940-b23f755e056f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "426"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d8287d7-6a44-4f55-ba05-717aa41ea051"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12652"
+ ],
+ "x-ms-correlation-request-id": [
+ "30a449e5-d884-4485-937e-1b59c73d3fd6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212647Z:30a449e5-d884-4485-937e-1b59c73d3fd6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "839"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35738288-0f61-4ed4-8e24-89af851bee23"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12651"
+ ],
+ "x-ms-correlation-request-id": [
+ "1716108d-9a88-4ba1-8827-77686987892a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:1716108d-9a88-4ba1-8827-77686987892a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2b29c444-4d7a-4653-92c6-a8abb01c36d7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12650"
+ ],
+ "x-ms-correlation-request-id": [
+ "0aa03173-f79d-415a-addf-1340d2b59edf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:0aa03173-f79d-415a-addf-1340d2b59edf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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/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": [
+ "312"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "860754ef-42f1-4c4b-838f-43484618716d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12649"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b9297a-c6da-41dc-80c8-f221700837a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:79b9297a-c6da-41dc-80c8-f221700837a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eb5e7512-a7a5-4881-b733-3288b281fa99"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12648"
+ ],
+ "x-ms-correlation-request-id": [
+ "65d615f3-7b1a-4251-aa53-e14f09713ea8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:65d615f3-7b1a-4251-aa53-e14f09713ea8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9fcce121-cba8-41ec-bea9-e071eb03ee0e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12647"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1b7ea82-3b06-4381-82b6-82902a35caac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:f1b7ea82-3b06-4381-82b6-82902a35caac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5e062a3b-35fa-4fdd-80f3-6f04cce827c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12646"
+ ],
+ "x-ms-correlation-request-id": [
+ "2e37e0ae-15a4-43b4-b909-b7b03ece2c20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:2e37e0ae-15a4-43b4-b909-b7b03ece2c20"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "335b0498-5cfa-4f36-9de0-15393301068e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12645"
+ ],
+ "x-ms-correlation-request-id": [
+ "ddb2e18c-1f8c-47f4-925c-bfea5040f654"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:ddb2e18c-1f8c-47f4-925c-bfea5040f654"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "64a3770d-5b78-4173-aa80-9720e1e847a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12644"
+ ],
+ "x-ms-correlation-request-id": [
+ "b79cc161-4224-4762-825c-333ed8a0df79"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:b79cc161-4224-4762-825c-333ed8a0df79"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:47 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6db654fd-739d-404a-bdfe-2f7bed0308fd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12643"
+ ],
+ "x-ms-correlation-request-id": [
+ "df1aacca-00c5-4a26-a611-e55fd0b760ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:df1aacca-00c5-4a26-a611-e55fd0b760ae"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d23ee09-76c1-4b78-a79f-250e763672c0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12642"
+ ],
+ "x-ms-correlation-request-id": [
+ "da4a9eeb-6181-4059-9b35-4f6bf274c69f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:da4a9eeb-6181-4059-9b35-4f6bf274c69f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "338"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21dfe407-a26b-464d-ac83-6c89bb4d696f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12641"
+ ],
+ "x-ms-correlation-request-id": [
+ "418a2cc0-b0f0-4ce2-ac90-a4422f811d6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212648Z:418a2cc0-b0f0-4ce2-ac90-a4422f811d6d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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/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": [
+ "317"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f05dc122-ce7b-4f85-b594-61aac57f4a7e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12640"
+ ],
+ "x-ms-correlation-request-id": [
+ "085f3ffa-4584-4cc1-a1a7-d0571a94c235"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:085f3ffa-4584-4cc1-a1a7-d0571a94c235"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "584"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "746838c2-0d4a-419d-8311-5df926cd8820"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12639"
+ ],
+ "x-ms-correlation-request-id": [
+ "6db3b4a4-ac31-4d48-aabf-5c0ee9ff112c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:6db3b4a4-ac31-4d48-aabf-5c0ee9ff112c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "2291"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bca6701-df12-4624-97a2-59278a5aa213"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12638"
+ ],
+ "x-ms-correlation-request-id": [
+ "29d9e270-2a25-43d8-8c86-09d4e122f1ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:29d9e270-2a25-43d8-8c86-09d4e122f1ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f6c5ffe-2810-4d8d-a13b-f67c3b150a3c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12637"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ab369ac-67ae-426d-a09c-af01d668bfc9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:8ab369ac-67ae-426d-a09c-af01d668bfc9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "578"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "897ccc62-720a-43c9-9561-ca07ad07ec39"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12636"
+ ],
+ "x-ms-correlation-request-id": [
+ "46740cad-5c5c-444a-a5ad-d823f0372335"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:46740cad-5c5c-444a-a5ad-d823f0372335"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c442f42a-f600-4d04-afdf-aa1cb0d38fb3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12635"
+ ],
+ "x-ms-correlation-request-id": [
+ "64df02a0-8b6b-4445-ae2f-0786d441319d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:64df02a0-8b6b-4445-ae2f-0786d441319d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "578"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fa74dafb-7ba1-4c06-8394-a91125609349"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12634"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4d82fc6-bdc8-4af8-8c8c-b88e7a9407ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:d4d82fc6-bdc8-4af8-8c8c-b88e7a9407ab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:48 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=",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72febd9c-6770-456d-9e5f-62edd0eecfdb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12633"
+ ],
+ "x-ms-correlation-request-id": [
+ "cddde8bf-e131-4a45-985c-70e92a974b9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:cddde8bf-e131-4a45-985c-70e92a974b9c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "578"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b54bf233-e82f-49c2-b497-25179fa372d3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12632"
+ ],
+ "x-ms-correlation-request-id": [
+ "a18d8bf1-cd15-484c-83d0-b081283e53c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212649Z:a18d8bf1-cd15-484c-83d0-b081283e53c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3971597c-3cb2-4ca2-aa10-8186f38fa71a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12631"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1c3a525-ac60-4e46-bc19-c68ed3d726f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:a1c3a525-ac60-4e46-bc19-c68ed3d726f8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "576"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c008247c-a44a-4a95-add8-9fc1a5934efd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12630"
+ ],
+ "x-ms-correlation-request-id": [
+ "60292fd7-91f8-44fb-b89e-3220286bddad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:60292fd7-91f8-44fb-b89e-3220286bddad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5238f31f-40ea-45b7-96ec-8d009a2e8d3d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12629"
+ ],
+ "x-ms-correlation-request-id": [
+ "1292b801-fe6c-431f-85de-55d5845a8252"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:1292b801-fe6c-431f-85de-55d5845a8252"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "576"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3c168621-627a-48a7-b36c-7e401411a523"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12628"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d0a52e1-80a0-4a65-8a41-0238c62f7359"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:8d0a52e1-80a0-4a65-8a41-0238c62f7359"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "244fe782-4e6e-4a21-92c0-1bf3a284725c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12627"
+ ],
+ "x-ms-correlation-request-id": [
+ "2dbdd595-3b56-4903-9b1a-51551ddc3d4f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:2dbdd595-3b56-4903-9b1a-51551ddc3d4f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "576"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bea9b466-ae50-46c6-9d6b-8fdd66661431"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12626"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d0ad584-d641-4c8a-9287-888f5b4d3e50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:1d0ad584-d641-4c8a-9287-888f5b4d3e50"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eaa254b4-32ed-44e8-b3d5-00103e592f48"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12625"
+ ],
+ "x-ms-correlation-request-id": [
+ "71ae7599-a1d2-4b38-8699-242e0536359f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:71ae7599-a1d2-4b38-8699-242e0536359f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "576"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b359b810-5445-4bd2-8814-8a8673dd6de9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12624"
+ ],
+ "x-ms-correlation-request-id": [
+ "0ae1f035-59d7-4d2d-ba8a-eedcfdac06c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:0ae1f035-59d7-4d2d-ba8a-eedcfdac06c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:49 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1d033522-0f4a-44ec-a362-ef90a70450a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12623"
+ ],
+ "x-ms-correlation-request-id": [
+ "81bfd097-52ae-4109-9dfa-6001ef1c9228"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:81bfd097-52ae-4109-9dfa-6001ef1c9228"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "028961b2-24cd-4984-b2af-c6db45944f79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12622"
+ ],
+ "x-ms-correlation-request-id": [
+ "70d4b2d4-3e12-4b6b-96ee-dbe8f47f1b31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212650Z:70d4b2d4-3e12-4b6b-96ee-dbe8f47f1b31"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b7e3eda-dbc3-46fc-8453-b50b7df1083f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12621"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa9bad22-283c-48b8-a47f-16ef082d7e9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:fa9bad22-283c-48b8-a47f-16ef082d7e9f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "518"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4ef6b76-7f2d-4aad-a66f-df7651006f9e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12620"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4b30dd2-aab2-4f40-bbb5-9d65ed9911bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:c4b30dd2-aab2-4f40-bbb5-9d65ed9911bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4d13a8d-ba11-4dc3-8507-35f3e551a573"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12619"
+ ],
+ "x-ms-correlation-request-id": [
+ "711a0f74-b43c-4d16-ba0d-ba94835a3573"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:711a0f74-b43c-4d16-ba0d-ba94835a3573"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3e220471-9fbe-4732-93cf-83211a2146e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12618"
+ ],
+ "x-ms-correlation-request-id": [
+ "99654007-5e35-43b7-a8b5-7a8f0cc0f139"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:99654007-5e35-43b7-a8b5-7a8f0cc0f139"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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/moviemasher/ArtifactTypes/VMImage/Offers/moviemasher/Skus/moviemasher/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "07e4a840-6239-48be-b060-9454fe43daca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12617"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e24b233-7752-48cc-b687-2ea87072f38e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:4e24b233-7752-48cc-b687-2ea87072f38e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5e26c2d7-2fc9-4ceb-819a-152e12c89c75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12616"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc2f05c8-caa4-4d01-9b57-cee74c086fe6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:cc2f05c8-caa4-4d01-9b57-cee74c086fe6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1192"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7636162b-47a7-4d94-a123-9dd0f28d2fdb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12615"
+ ],
+ "x-ms-correlation-request-id": [
+ "75520238-e455-4655-b5e7-8327cba26747"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:75520238-e455-4655-b5e7-8327cba26747"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d555c0f1-a114-480e-8e7d-b37a7755c55b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12614"
+ ],
+ "x-ms-correlation-request-id": [
+ "fa085fe5-ca9d-44c4-bef5-6ca9ae991724"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:fa085fe5-ca9d-44c4-bef5-6ca9ae991724"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "803ba45d-29c6-4ca2-9515-916b2a76a6b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12613"
+ ],
+ "x-ms-correlation-request-id": [
+ "7bf4d5dd-aaf0-4702-96eb-fd13dae0f3bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:7bf4d5dd-aaf0-4702-96eb-fd13dae0f3bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:50 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5386534f-5fee-4e93-9643-f3b41dae4461"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12612"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd207a7e-8340-4b34-bc28-b397642081c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212651Z:dd207a7e-8340-4b34-bc28-b397642081c0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f21efbb-49e4-48fb-a6a9-c10821769382"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12611"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ee4f806-af1b-4fc3-be16-9f44a37643ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:6ee4f806-af1b-4fc3-be16-9f44a37643ae"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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.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]",
+ "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": [
+ "8c648780-b4ef-4cb0-a969-1c47ea5fe86b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12610"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcfdfe84-b129-4c4b-91f1-bd4c86e176d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:fcfdfe84-b129-4c4b-91f1-bd4c86e176d3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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\": \"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}",
+ "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": [
+ "0da8311b-4420-4610-b8a7-7a35ccd608f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12609"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f7c73e1-4496-472b-a868-08c15334f88c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:3f7c73e1-4496-472b-a868-08c15334f88c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99d13b89-a258-41da-8e38-14faa2002914"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12608"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7b539d8-5056-48ff-a5ea-28de130d0577"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:c7b539d8-5056-48ff-a5ea-28de130d0577"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93fe38a6-09ba-49b8-af33-ab4d8ef8c6ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12607"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9e0e10f-a99a-4cd1-a4b8-c9b79b0f08e0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:a9e0e10f-a99a-4cd1-a4b8-c9b79b0f08e0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "99c849bb-e43a-4bbf-861e-505ac33942e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12606"
+ ],
+ "x-ms-correlation-request-id": [
+ "17bf31a3-c4ac-46f2-8f90-312ace886c0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:17bf31a3-c4ac-46f2-8f90-312ace886c0d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "153819bd-3f10-41cb-b4ca-f4f4b035b0d4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12605"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf60492e-888d-43ec-91c6-1559a9accfb7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:cf60492e-888d-43ec-91c6-1559a9accfb7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "226bc2c5-5680-4d6e-b23f-c66684f56b32"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12604"
+ ],
+ "x-ms-correlation-request-id": [
+ "92a5fb74-f104-489c-bc86-dd8ae04fcf1e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:92a5fb74-f104-489c-bc86-dd8ae04fcf1e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9def6e7c-bf7e-47b9-a59e-09cc628efa2a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12603"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b15d733-54d9-40f9-8c51-2f1cca142996"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:9b15d733-54d9-40f9-8c51-2f1cca142996"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:51 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6cda9db2-7526-4cd5-87b5-6b7984aed3da"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12602"
+ ],
+ "x-ms-correlation-request-id": [
+ "6a5a2a9d-0938-4dca-8645-2882d88c7517"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212652Z:6a5a2a9d-0938-4dca-8645-2882d88c7517"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59d7cdd0-b24c-4af7-9f4d-0e3f1a256483"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12601"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b186696-4522-4332-a310-fe5e125591ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:1b186696-4522-4332-a310-fe5e125591ae"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b92601c2-8c43-47f4-8ac5-c4e4978e4b71"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12600"
+ ],
+ "x-ms-correlation-request-id": [
+ "eef57075-1961-4af8-bdeb-4d7d12bbe175"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:eef57075-1961-4af8-bdeb-4d7d12bbe175"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7be7ddc3-7614-4187-8503-2d761a053a48"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12599"
+ ],
+ "x-ms-correlation-request-id": [
+ "0055379e-ffd5-428b-8f2d-d56e7eb4885a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:0055379e-ffd5-428b-8f2d-d56e7eb4885a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "926167c7-34c0-4fdd-9bfc-c799b0280e56"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12598"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b13835e-0f76-4dc8-b561-9b11717c206b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:1b13835e-0f76-4dc8-b561-9b11717c206b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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.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]",
+ "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": [
+ "d1391267-736e-40a7-a654-9f2db5921938"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12597"
+ ],
+ "x-ms-correlation-request-id": [
+ "c63e11e4-091f-49f8-a200-41a6de2ebbc7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:c63e11e4-091f-49f8-a200-41a6de2ebbc7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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\": \"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}",
+ "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": [
+ "83f74475-eb73-4cf7-aeb7-93fe8cd1d088"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12596"
+ ],
+ "x-ms-correlation-request-id": [
+ "373203fc-d3ba-4861-b48f-b6edc7c1fe8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:373203fc-d3ba-4861-b48f-b6edc7c1fe8b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "17279bc9-71ca-4738-92bf-95ffcb3f055a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12595"
+ ],
+ "x-ms-correlation-request-id": [
+ "5af2f29e-b06e-4e6c-8dfc-181a96a34ab3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:5af2f29e-b06e-4e6c-8dfc-181a96a34ab3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "987eea8f-9f4a-4dac-8be1-378058e7e098"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12594"
+ ],
+ "x-ms-correlation-request-id": [
+ "f389c4b4-4bba-4dd6-91e4-3bb94ea94fc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:f389c4b4-4bba-4dd6-91e4-3bb94ea94fc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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",
+ "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\": \"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]",
+ "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": [
+ "6de68348-588a-4205-8277-18d69175165f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12593"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b45bce-4983-4468-8972-a5cc4e5c420f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:79b45bce-4983-4468-8972-a5cc4e5c420f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "314"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "82ca6f11-370d-4fe1-a438-d29b3ecb34cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12592"
+ ],
+ "x-ms-correlation-request-id": [
+ "2744102c-4840-47ca-9e48-8df962df6cce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:2744102c-4840-47ca-9e48-8df962df6cce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:52 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "949cd576-998f-46ce-8474-4a0cabb0d044"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12591"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ccf2d3d-fa30-4638-a834-8ef39c134d31"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212653Z:8ccf2d3d-fa30-4638-a834-8ef39c134d31"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91d5e353-9117-4312-80c0-63fe2d6ad031"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12590"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2581bd1-a64b-46b5-bbae-d279c3ab7aff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:c2581bd1-a64b-46b5-bbae-d279c3ab7aff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "236"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "342d0718-a7a8-4fb0-96bd-f1ccee1e6fcc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12589"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d6edf92-8fb2-4130-b891-37cfd3a2b4ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:9d6edf92-8fb2-4130-b891-37cfd3a2b4ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1613"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54aaebbf-f713-4916-a87b-1ca6d5ede07e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12588"
+ ],
+ "x-ms-correlation-request-id": [
+ "f638415c-f650-4a49-a74f-b67974fb98d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:f638415c-f650-4a49-a74f-b67974fb98d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-10000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b4ace789-fa1c-4459-8833-06340b43a3a7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12587"
+ ],
+ "x-ms-correlation-request-id": [
+ "c355f3e7-3623-4725-94ac-588e03c8271b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:c355f3e7-3623-4725-94ac-588e03c8271b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "11634940-36d0-46cb-8fd6-df3913492236"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12586"
+ ],
+ "x-ms-correlation-request-id": [
+ "811b80e2-9e91-4d84-b0aa-559cdd10e3c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:811b80e2-9e91-4d84-b0aa-559cdd10e3c1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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=",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-1000pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "60294e3c-b53c-4fea-b803-e98bc344e9c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12585"
+ ],
+ "x-ms-correlation-request-id": [
+ "981ea233-5fed-439e-83ea-3ba379c25514"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:981ea233-5fed-439e-83ea-3ba379c25514"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af1484b7-d8e3-4fea-8e80-0f811be495fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12584"
+ ],
+ "x-ms-correlation-request-id": [
+ "975b9d20-0f6e-460e-815a-2fc96a981c39"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:975b9d20-0f6e-460e-815a-2fc96a981c39"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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==",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-100pk-gdss-x/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": [
+ "eed09804-73a0-41f9-a046-5d060984c670"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12583"
+ ],
+ "x-ms-correlation-request-id": [
+ "176479a5-8e9e-4395-9009-27c7f61fe951"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:176479a5-8e9e-4395-9009-27c7f61fe951"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:53 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==",
+ "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\": \"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}",
+ "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": [
+ "fa2a107c-e0c6-4c0a-8ef3-696bd8729e71"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12582"
+ ],
+ "x-ms-correlation-request-id": [
+ "3efe3e8e-0603-4f34-8469-66e253d02ba2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212654Z:3efe3e8e-0603-4f34-8469-66e253d02ba2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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=",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-2500pk-gdss-x/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f26e5a2e-197c-4e0f-83b9-dd03039551a3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12581"
+ ],
+ "x-ms-correlation-request-id": [
+ "517c8846-3284-47d7-81bb-4d79770dfbaf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:517c8846-3284-47d7-81bb-4d79770dfbaf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1f9be877-d6d9-4224-87bd-4d7143ebad45"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12580"
+ ],
+ "x-ms-correlation-request-id": [
+ "60b092b4-96e6-4c70-a5d0-f9bafbb7dc54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:60b092b4-96e6-4c70-a5d0-f9bafbb7dc54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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==",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-250pk-gdss-x/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": [
+ "9c728097-f55c-4da2-a056-c6910fd5125e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12579"
+ ],
+ "x-ms-correlation-request-id": [
+ "6cfdc964-a1a2-44ba-8a28-bb90195a6cbc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:6cfdc964-a1a2-44ba-8a28-bb90195a6cbc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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==",
+ "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\": \"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}",
+ "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": [
+ "06c71e6f-d021-4c59-b2fa-caf195202a4c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12578"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1530b7e-820d-4433-a2bb-bf97beb0be87"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:e1530b7e-820d-4433-a2bb-bf97beb0be87"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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==",
+ "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/mxhero/ArtifactTypes/VMImage/Offers/mail2cloud/Skus/mxhm2c-500pk-gdss-x/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": [
+ "5176a105-e913-48f7-8cdc-f719b56b551e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12577"
+ ],
+ "x-ms-correlation-request-id": [
+ "239f9166-91cf-4477-9caf-d5d5ad1c5283"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:239f9166-91cf-4477-9caf-d5d5ad1c5283"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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==",
+ "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\": \"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}",
+ "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": [
+ "35160f59-9f2f-4b04-9580-51b87df6b950"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12576"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bfafe1c-dde0-4ce5-aa54-763f79bdd0a7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:8bfafe1c-dde0-4ce5-aa54-763f79bdd0a7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2356278b-01e1-449f-9f79-33ef6d443c2d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12575"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f89443f-3622-4a88-8cca-f8382396aa25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:9f89443f-3622-4a88-8cca-f8382396aa25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "409a2ca6-cd65-47f4-ab41-a316b925fd01"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12574"
+ ],
+ "x-ms-correlation-request-id": [
+ "40af14a1-61e8-4c4a-8884-b7cf1af40582"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:40af14a1-61e8-4c4a-8884-b7cf1af40582"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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=",
+ "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/ncbi/ArtifactTypes/VMImage/Offers/ncbi-free-2-2-31/Skus/free/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a56bb726-b94c-43dd-a95c-cc4729dc4b37"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12573"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a964b09-6bb8-46a1-ba81-1f623f18402a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212655Z:9a964b09-6bb8-46a1-ba81-1f623f18402a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89024fff-ee34-4b9d-9466-864b6db5d391"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12572"
+ ],
+ "x-ms-correlation-request-id": [
+ "464d3bc6-22cf-4cc6-8208-bc84351c3a57"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:464d3bc6-22cf-4cc6-8208-bc84351c3a57"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "7bc18cbd-2242-402c-baf4-c20816d5e3f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12571"
+ ],
+ "x-ms-correlation-request-id": [
+ "b39cabc2-e926-48c5-a31e-4f5e06720cd5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:b39cabc2-e926-48c5-a31e-4f5e06720cd5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "249"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "85e17fca-d1b4-497c-a553-c1132f751514"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12570"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c14d13b-f2d3-47db-afbd-7cf67ac1b7bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:6c14d13b-f2d3-47db-afbd-7cf67ac1b7bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f66d9de3-e1f1-4bac-8b2c-92a040e68d18"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12569"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad4a26a0-7897-492f-a015-eca4e21c1420"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:ad4a26a0-7897-492f-a015-eca4e21c1420"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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=",
+ "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/nexus/ArtifactTypes/VMImage/Offers/nexus-chameleon-9/Skus/nexuschameleon/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0cfd6d66-a3dc-4532-9c5b-21b3c457b25d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12568"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c55025a-45d0-425d-8088-0a66c66b7f9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:3c55025a-45d0-425d-8088-0a66c66b7f9e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f0185b6-d986-416a-8cd1-851d5f965a3b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12567"
+ ],
+ "x-ms-correlation-request-id": [
+ "043a7df0-fe54-481d-ab15-8173891450bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:043a7df0-fe54-481d-ab15-8173891450bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10d8ca16-3eea-420c-9f34-a7ef0a390a63"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12566"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ec127a5-f6f4-4311-adf8-be562e1d7020"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:2ec127a5-f6f4-4311-adf8-be562e1d7020"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d5c9628c-fbf4-4f9a-8bee-f1e44f15c67a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12565"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1cd3ce0-e3d2-4af5-b686-53bdd0a6cadb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:b1cd3ce0-e3d2-4af5-b686-53bdd0a6cadb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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",
+ "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/nginxinc/ArtifactTypes/VMImage/Offers/nginx-plus-v1/Skus/nginx-plus/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e9db3459-7e8f-49cd-8e84-3453aeff1b17"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12564"
+ ],
+ "x-ms-correlation-request-id": [
+ "41f19d64-fd8b-4992-9ded-bc4c6a4f3210"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212656Z:41f19d64-fd8b-4992-9ded-bc4c6a4f3210"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:55 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3007ada-e584-4076-97c0-ce41f806abb1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12563"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0393d56-265f-43b5-981b-5486f94bc849"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:a0393d56-265f-43b5-981b-5486f94bc849"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2dd99ff-ae48-4565-8202-c27316f92042"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12562"
+ ],
+ "x-ms-correlation-request-id": [
+ "77642ea6-e3c3-4969-88e7-dd68898fb4ab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:77642ea6-e3c3-4969-88e7-dd68898fb4ab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3fe492de-f802-4acb-b3a4-6eeb6096e0da"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12561"
+ ],
+ "x-ms-correlation-request-id": [
+ "834d8c98-bc63-4e91-bbf4-1b81d002a546"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:834d8c98-bc63-4e91-bbf4-1b81d002a546"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "71eb156e-2e55-43d5-893f-c78e4a994384"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12560"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e09bc00-7f0a-4920-b238-3d1fe8620082"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:1e09bc00-7f0a-4920-b238-3d1fe8620082"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "482"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d87ec232-86de-49e6-b41d-5b720e70a8e0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12559"
+ ],
+ "x-ms-correlation-request-id": [
+ "e01b13dd-83e7-44f8-ad74-5ea534a73e56"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:e01b13dd-83e7-44f8-ad74-5ea534a73e56"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "761be4d8-b840-4295-9b50-01d0b42ce9b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12558"
+ ],
+ "x-ms-correlation-request-id": [
+ "377442a3-5cfa-43a2-9272-8f9e81c2b7e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:377442a3-5cfa-43a2-9272-8f9e81c2b7e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "756"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35ffeb63-b0e7-4556-869f-0f9105ff1d7a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12557"
+ ],
+ "x-ms-correlation-request-id": [
+ "472b148c-56b0-4df7-b9bb-e0a6e7f2e1fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:472b148c-56b0-4df7-b9bb-e0a6e7f2e1fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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==",
+ "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/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/professional/Versions/1.0.0\"\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": [
+ "746f2c67-9928-4aec-b034-6d4702747823"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12556"
+ ],
+ "x-ms-correlation-request-id": [
+ "40f274ff-1f69-4251-bbb7-31ff8dd907fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:40f274ff-1f69-4251-bbb7-31ff8dd907fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8eb08e2b-27e4-4c64-a268-6ea14dcf177b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12555"
+ ],
+ "x-ms-correlation-request-id": [
+ "5fd82b93-f4a7-454e-9ffb-350a5caa3f22"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:5fd82b93-f4a7-454e-9ffb-350a5caa3f22"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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",
+ "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/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/standard/Versions/1.0.0\"\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": [
+ "769fb233-2ad7-4880-916a-43da79734e73"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12554"
+ ],
+ "x-ms-correlation-request-id": [
+ "804857d8-9b34-4240-87ba-f8d989f40176"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:804857d8-9b34-4240-87ba-f8d989f40176"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8b01704-68bc-4c38-8bda-ecec1dd13a0b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12553"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd4a5638-47cd-49dc-b09c-6f0975d7525b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212657Z:fd4a5638-47cd-49dc-b09c-6f0975d7525b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:57 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=",
+ "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/nodejsapi/ArtifactTypes/VMImage/Offers/node-js-api/Skus/starter/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "038295ba-2863-4669-9771-f8903c580e50"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12552"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb619976-73ca-4d06-8adf-69dfd5ad5dc4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:eb619976-73ca-4d06-8adf-69dfd5ad5dc4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "476"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "02191c35-bef1-458a-9070-5000820253ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12551"
+ ],
+ "x-ms-correlation-request-id": [
+ "941011e5-ac60-44e2-93b0-9af1056bafb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:941011e5-ac60-44e2-93b0-9af1056bafb2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6f2c14cf-8da6-45e2-a8ae-9cf714a3c6f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12550"
+ ],
+ "x-ms-correlation-request-id": [
+ "39abba30-4f26-4cba-a94e-4b4a519d14a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:39abba30-4f26-4cba-a94e-4b4a519d14a1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bb20d3ed-b591-451b-b71c-58adc5c19ee9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12549"
+ ],
+ "x-ms-correlation-request-id": [
+ "882f5207-eb65-4d77-a03c-a874e0f28f05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:882f5207-eb65-4d77-a03c-a874e0f28f05"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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/officeclipsuite/ArtifactTypes/VMImage/Offers/officeclipsuite/Skus/officeclipsuite/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f663821b-be3a-4a48-b2e5-b32f1b15d9c7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12548"
+ ],
+ "x-ms-correlation-request-id": [
+ "03e6a094-8abf-47df-bff0-2a10cfd7be0d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:03e6a094-8abf-47df-bff0-2a10cfd7be0d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d918ea86-bb8d-48d5-9535-1d6463a3eee1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12547"
+ ],
+ "x-ms-correlation-request-id": [
+ "57a7f8da-d8bb-4a6d-ad6e-aba00947ef7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:57a7f8da-d8bb-4a6d-ad6e-aba00947ef7f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "465"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "971f3ff0-92be-4f33-9253-4348c16da9b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12546"
+ ],
+ "x-ms-correlation-request-id": [
+ "49d1a6f0-7055-429f-b68e-e80659fccdd1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:49d1a6f0-7055-429f-b68e-e80659fccdd1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "239"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d7062c4d-ad00-4694-afe4-496c0582d3d6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12545"
+ ],
+ "x-ms-correlation-request-id": [
+ "1db856f2-b239-485c-930e-d7822734f85e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212658Z:1db856f2-b239-485c-930e-d7822734f85e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "895b95be-3189-467b-b807-e9236f3bff56"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12544"
+ ],
+ "x-ms-correlation-request-id": [
+ "f366feaa-4462-462d-a036-4675dc00702d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:f366feaa-4462-462d-a036-4675dc00702d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:58 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "458"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "886a1c75-b8a4-4dee-9080-55633653dff2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12543"
+ ],
+ "x-ms-correlation-request-id": [
+ "5708c27f-c15e-4f8b-9771-19de933b0e20"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:5708c27f-c15e-4f8b-9771-19de933b0e20"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c087c446-7f95-4571-8ae2-8a7531ee7e8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12542"
+ ],
+ "x-ms-correlation-request-id": [
+ "935d4a0b-92a4-4509-b026-ffbdbfe25763"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:935d4a0b-92a4-4509-b026-ffbdbfe25763"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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=",
+ "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\": \"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]",
+ "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": [
+ "9c9ba4ca-729d-44f0-8a62-9d2d8f9be03c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12541"
+ ],
+ "x-ms-correlation-request-id": [
+ "994e26cd-52f0-4db4-a8f3-fe9301937403"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:994e26cd-52f0-4db4-a8f3-fe9301937403"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "472"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9854e4a2-f404-4dd4-9453-702a50b01372"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12540"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ff00fba-344c-431c-b71e-e08d6deddcd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:9ff00fba-344c-431c-b71e-e08d6deddcd8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "231"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dcf202b8-c346-47ed-a851-ad7aceb147f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12539"
+ ],
+ "x-ms-correlation-request-id": [
+ "57ec38a5-56a2-4b3c-8683-2695755abe4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:57ec38a5-56a2-4b3c-8683-2695755abe4a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "939"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "025f4789-8b8c-4e37-9be1-5e4a99ca11ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12538"
+ ],
+ "x-ms-correlation-request-id": [
+ "68bde113-2be9-4363-b2d0-05638575e0e6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:68bde113-2be9-4363-b2d0-05638575e0e6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "786"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b8c40a50-df46-4702-91dc-83e246e747e5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12537"
+ ],
+ "x-ms-correlation-request-id": [
+ "490e4d8e-b982-423d-a19e-22e261984170"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:490e4d8e-b982-423d-a19e-22e261984170"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a167f995-077c-414d-8401-794755d8c80d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12536"
+ ],
+ "x-ms-correlation-request-id": [
+ "2132b34d-5fc8-455b-af1b-13b9d96d22ef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212659Z:2132b34d-5fc8-455b-af1b-13b9d96d22ef"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "67554074-0669-4d60-a41b-356e7cfc802d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12535"
+ ],
+ "x-ms-correlation-request-id": [
+ "49ce17e5-92ce-4f84-bb6a-200775e85c16"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:49ce17e5-92ce-4f84-bb6a-200775e85c16"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:26:59 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "da60db27-b402-4306-89c5-b575cadbca28"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12534"
+ ],
+ "x-ms-correlation-request-id": [
+ "9be121de-1a08-4130-a462-486615271f7c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:9be121de-1a08-4130-a462-486615271f7c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1051"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "71f7924e-9898-4610-a1a5-51004766ea44"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12533"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6d69f15-1d0f-4a0c-9290-e7e3439d7c81"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:f6d69f15-1d0f-4a0c-9290-e7e3439d7c81"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e67f198e-3469-4f2b-9cc0-2b6f17383fc5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12532"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e49e102-d985-486a-b217-ba165587fd82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:6e49e102-d985-486a-b217-ba165587fd82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5ba83323-29e2-41fe-8d77-1a86d42d6c12"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12531"
+ ],
+ "x-ms-correlation-request-id": [
+ "8a631a4d-bf1e-43f5-a57a-bbc985be2a09"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:8a631a4d-bf1e-43f5-a57a-bbc985be2a09"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b4b44dc8-0d5b-445d-b41d-a147ded15d5e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12530"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f6b0b5b-81df-4407-af31-e5862d981502"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:4f6b0b5b-81df-4407-af31-e5862d981502"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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",
+ "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\": \"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}",
+ "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": [
+ "429cb8bc-f695-43c8-854b-0ba7f11c0b0c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12529"
+ ],
+ "x-ms-correlation-request-id": [
+ "e3f02b90-cd93-4c9a-b516-eaa8375a4316"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:e3f02b90-cd93-4c9a-b516-eaa8375a4316"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "786"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e07898c7-681e-46fe-9b32-2b0a56398b5b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12528"
+ ],
+ "x-ms-correlation-request-id": [
+ "22d12625-1a2f-435c-affe-957a6633f20a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:22d12625-1a2f-435c-affe-957a6633f20a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1cd791bd-51da-48fa-91ba-9ad273deb01c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12527"
+ ],
+ "x-ms-correlation-request-id": [
+ "4a8d3c6a-8679-441b-9dcc-e22b89139cf5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:4a8d3c6a-8679-441b-9dcc-e22b89139cf5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9575bb37-3eb5-4bac-8160-814b6700452f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12526"
+ ],
+ "x-ms-correlation-request-id": [
+ "e23d728a-3fd6-456d-9501-f7b7b57315b7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:e23d728a-3fd6-456d-9501-f7b7b57315b7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ec55037-cbd1-4fb1-a934-5cd2edf4522c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12525"
+ ],
+ "x-ms-correlation-request-id": [
+ "0dbb2319-1d09-4ed9-8053-08327bdd0d93"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212700Z:0dbb2319-1d09-4ed9-8053-08327bdd0d93"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:00 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "525"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a6d11b8a-153d-46f7-ae74-8f564c113662"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12524"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6179794-c2b8-4110-969a-ea3b68f21341"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:b6179794-c2b8-4110-969a-ea3b68f21341"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ca12c830-9465-442d-a0a3-c8fb3dde8256"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12523"
+ ],
+ "x-ms-correlation-request-id": [
+ "8fc8bbe1-372d-4763-9e2a-5df461ce7536"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:8fc8bbe1-372d-4763-9e2a-5df461ce7536"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b7b3c8f-001c-4624-aeb9-542a360ca46a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12522"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c1c0fdc-d4de-4741-aeb8-748efe212651"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:5c1c0fdc-d4de-4741-aeb8-748efe212651"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e6bcd995-ae29-45c8-a66c-22d6a4f57c8a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12521"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1946671-a10b-4d3c-8e78-bcf21b040bd5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:e1946671-a10b-4d3c-8e78-bcf21b040bd5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff3cbd29-ec30-4c29-8cce-6a3b3a3ebf68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12520"
+ ],
+ "x-ms-correlation-request-id": [
+ "803d5f3c-4359-4226-b37e-abb45ab25eb2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:803d5f3c-4359-4226-b37e-abb45ab25eb2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8281727d-fbc8-41c7-8137-cd2800a59834"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12519"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2ba969b-98ad-44b7-91e9-6a94d88e33ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:d2ba969b-98ad-44b7-91e9-6a94d88e33ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1375000e-57da-4997-9b4a-2433a0e1b5e8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12518"
+ ],
+ "x-ms-correlation-request-id": [
+ "b261f0f8-7155-4b06-98b3-3cd4f2826e9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:b261f0f8-7155-4b06-98b3-3cd4f2826e9d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "92312477-c61a-456a-a25b-e92f2a8880a2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12517"
+ ],
+ "x-ms-correlation-request-id": [
+ "153fbee0-49f8-43d9-9a2f-91ac0e5608ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:153fbee0-49f8-43d9-9a2f-91ac0e5608ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7698303f-5414-4d95-9d08-31b29f4dc711"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12516"
+ ],
+ "x-ms-correlation-request-id": [
+ "40253345-0279-4fa6-bf69-bed53fdccedb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212701Z:40253345-0279-4fa6-bf69-bed53fdccedb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0cca7105-c22a-4c8d-b9ef-996979bc110f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12515"
+ ],
+ "x-ms-correlation-request-id": [
+ "32c8ceb8-5289-4165-99d4-dc3599c3fec9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:32c8ceb8-5289-4165-99d4-dc3599c3fec9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:01 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "528"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e375f5c6-1caa-43f2-9bd4-22db0a3ae701"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12514"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b4e850c-3058-4c1f-a4f6-19d8ac366d02"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:7b4e850c-3058-4c1f-a4f6-19d8ac366d02"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "826"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3f50001-bc87-4806-9a49-713eca5f71a4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12513"
+ ],
+ "x-ms-correlation-request-id": [
+ "9128febc-b073-4bb8-b4ab-c8fd04c0e660"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:9128febc-b073-4bb8-b4ab-c8fd04c0e660"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16007289-b49a-433e-b497-874757bddc1c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12512"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc3b79d5-301e-496f-800d-af8a71ddf723"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:bc3b79d5-301e-496f-800d-af8a71ddf723"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "302"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7c991aad-168e-45f3-b491-793d241c9558"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12511"
+ ],
+ "x-ms-correlation-request-id": [
+ "b918448d-e273-4ebc-9b04-d63b5a6c2590"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:b918448d-e273-4ebc-9b04-d63b5a6c2590"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0817cabf-4589-4b2a-aaa0-41c94205d97b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12510"
+ ],
+ "x-ms-correlation-request-id": [
+ "e95453d6-b11d-4d79-8abc-ea0dd910ee96"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:e95453d6-b11d-4d79-8abc-ea0dd910ee96"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "244"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc954bf5-0ae8-452a-b897-2272c4f7ecb1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12509"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c485abe-70d5-423f-a361-6167a57831ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:5c485abe-70d5-423f-a361-6167a57831ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3546e984-6ad0-4ea7-8699-b102fd4b9f13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12508"
+ ],
+ "x-ms-correlation-request-id": [
+ "38405a56-863c-4214-bb22-ad91a73361e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:38405a56-863c-4214-bb22-ad91a73361e3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4abd89ae-cabe-4c99-a04c-453994ec927c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12507"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca15fad4-4ebe-4b63-8eab-75a4573ade13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212702Z:ca15fad4-4ebe-4b63-8eab-75a4573ade13"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4dee1d1-1cde-489d-a19f-7f0e48c8280e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12506"
+ ],
+ "x-ms-correlation-request-id": [
+ "0507c114-3063-46ac-bf20-177fadacd085"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:0507c114-3063-46ac-bf20-177fadacd085"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba7646cb-773f-442d-b949-4501f356668f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12505"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f83d260-2d1a-463c-a650-33db98ec4dde"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:9f83d260-2d1a-463c-a650-33db98ec4dde"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:02 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "387"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d97e16c9-75ea-47e9-8466-b298c6b2589f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12504"
+ ],
+ "x-ms-correlation-request-id": [
+ "dde72987-ea56-4125-b84f-e541e8b5f25f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:dde72987-ea56-4125-b84f-e541e8b5f25f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a18fdc04-c06b-4f69-9603-3ff75b3ee00d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12503"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a0e4696-bdd6-45ee-b036-57d911cb44b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:1a0e4696-bdd6-45ee-b036-57d911cb44b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "316"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4e83dc1a-7da1-4c98-9619-96b5e97e8554"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12502"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2ca5f75-7d3c-4c53-abbd-906e7f07f507"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:d2ca5f75-7d3c-4c53-abbd-906e7f07f507"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "82dfcb47-f48a-47b8-b41d-0f4dd184ab6c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12501"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe0c18e7-fb85-49b0-b183-ce7682673e2a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:fe0c18e7-fb85-49b0-b183-ce7682673e2a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "598"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c9d6140-a010-4fb4-99b2-f79aba5c9b1c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12500"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a934414-1ba4-4c07-83ae-bb162dc5d20a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:1a934414-1ba4-4c07-83ae-bb162dc5d20a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00638e57-da93-4b9a-b752-52117ffcdc79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12499"
+ ],
+ "x-ms-correlation-request-id": [
+ "52e7734e-fe28-43d1-9184-0d0ccf362c8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:52e7734e-fe28-43d1-9184-0d0ccf362c8a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a85bad2d-48b9-4d75-b2d3-869c13a8bbd9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12498"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe1b6028-9c77-45ae-9c19-cebf7201257b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:fe1b6028-9c77-45ae-9c19-cebf7201257b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a512bd7-46fc-472e-987f-80c0af0e3a81"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12497"
+ ],
+ "x-ms-correlation-request-id": [
+ "057f0b27-a86f-4543-8e7f-7933f7456574"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:057f0b27-a86f-4543-8e7f-7933f7456574"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "829e81b6-b89b-4715-80d3-ff0bc91ea78f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12496"
+ ],
+ "x-ms-correlation-request-id": [
+ "aaade808-c7ae-47b4-91a0-1fc51b955f1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212703Z:aaade808-c7ae-47b4-91a0-1fc51b955f1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98599941-13de-4c24-8871-fb2b1293f8db"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12495"
+ ],
+ "x-ms-correlation-request-id": [
+ "4fcfd75e-cac3-46a8-8235-e7a1dcc37e6c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:4fcfd75e-cac3-46a8-8235-e7a1dcc37e6c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:03 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0dfc32e7-6e6f-4173-a391-bf5ad23d18f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12494"
+ ],
+ "x-ms-correlation-request-id": [
+ "78e5c051-cc36-4e63-8782-d4c5e83e6c38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:78e5c051-cc36-4e63-8782-d4c5e83e6c38"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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/pointmatter/ArtifactTypes/VMImage/Offers/pointmatter-csvhub/Skus/pointmatter-csvhub/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "306ab1e8-a912-49f9-9ce5-fc138ac025ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12493"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae68f052-70f2-42bc-920d-9c47f3151fe7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:ae68f052-70f2-42bc-920d-9c47f3151fe7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "560"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3aa78146-662f-47e8-98c3-f0adc0c5fe1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12492"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf33ab7f-909c-44ea-9f68-571f6928200c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:cf33ab7f-909c-44ea-9f68-571f6928200c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8ed705c0-7843-402b-a180-71f06bf3a29e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12491"
+ ],
+ "x-ms-correlation-request-id": [
+ "a1da760c-998b-42a9-8159-a79199ae53c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:a1da760c-998b-42a9-8159-a79199ae53c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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\": \"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]",
+ "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": [
+ "2c0d98d2-3e70-461b-8ca5-9bcbd8a3aa4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12490"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3908440-10f3-463d-a831-4717807bd013"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:c3908440-10f3-463d-a831-4717807bd013"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6e5549d0-933b-4e11-a15a-f18378e32710"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12489"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4bd35a4-7134-4692-afa3-84a17078b1ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:b4bd35a4-7134-4692-afa3-84a17078b1ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d840a896-3e80-4af4-8f70-e68edac00713"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12488"
+ ],
+ "x-ms-correlation-request-id": [
+ "145bbe79-183e-43a1-89e0-6a86330c8099"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:145bbe79-183e-43a1-89e0-6a86330c8099"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "38cabf1a-28fa-4299-b331-eb6be9ca7e6f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12487"
+ ],
+ "x-ms-correlation-request-id": [
+ "547e4503-f0d6-4502-b624-272cf8bb2302"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:547e4503-f0d6-4502-b624-272cf8bb2302"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78521b24-555e-4a76-b11e-da821c842e43"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12486"
+ ],
+ "x-ms-correlation-request-id": [
+ "96a98f0e-7a55-4d87-8066-4887fd88c5f2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212704Z:96a98f0e-7a55-4d87-8066-4887fd88c5f2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0832fdcd-1aa3-4235-b5b5-a8cf622a6a62"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12485"
+ ],
+ "x-ms-correlation-request-id": [
+ "199c6598-7a8d-44ac-9335-3a4bf2ad8c2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:199c6598-7a8d-44ac-9335-3a4bf2ad8c2d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fd5de0ee-1185-4e9c-a83b-1eebc0af2ba2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12484"
+ ],
+ "x-ms-correlation-request-id": [
+ "7da5f0ac-aab2-48dd-af57-64177f0db52c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:7da5f0ac-aab2-48dd-af57-64177f0db52c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:04 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "318a51ec-1ad8-4df5-930c-712395c25f71"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12483"
+ ],
+ "x-ms-correlation-request-id": [
+ "39f7bae8-019b-41e7-a3ad-1e7ed6a14931"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:39f7bae8-019b-41e7-a3ad-1e7ed6a14931"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "47b0a111-40df-4fab-837c-880838c4659d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12482"
+ ],
+ "x-ms-correlation-request-id": [
+ "68120f0c-1bf3-4a78-bd70-fac91e5ea8b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:68120f0c-1bf3-4a78-bd70-fac91e5ea8b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "577dbb4a-3c87-497d-b046-259a4c415ce3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12481"
+ ],
+ "x-ms-correlation-request-id": [
+ "d79a64ec-3c70-45ac-a14b-da20b7e3e56d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:d79a64ec-3c70-45ac-a14b-da20b7e3e56d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fdf74ad3-a78c-44d6-aa92-c5c532d41045"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12480"
+ ],
+ "x-ms-correlation-request-id": [
+ "50ec5e31-a105-4775-ac17-0fcb8d54cc74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:50ec5e31-a105-4775-ac17-0fcb8d54cc74"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5cecb194-c13e-4d94-8b03-a6fb07f737c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12479"
+ ],
+ "x-ms-correlation-request-id": [
+ "775a0375-ec2a-479d-a646-e2fea7759a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:775a0375-ec2a-479d-a646-e2fea7759a2f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "311"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b7eecd4-7250-42ce-b5a1-273d4011d4aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12478"
+ ],
+ "x-ms-correlation-request-id": [
+ "162ac7aa-9f2b-4150-8731-047db731642f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:162ac7aa-9f2b-4150-8731-047db731642f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5695a3aa-c0a7-4c4f-adfc-4134dcf44d50"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12477"
+ ],
+ "x-ms-correlation-request-id": [
+ "a9341d01-a71f-4d51-adba-85f60062402b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:a9341d01-a71f-4d51-adba-85f60062402b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "600"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "eaf99782-0ae7-41e8-a8cb-8822107368e5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12476"
+ ],
+ "x-ms-correlation-request-id": [
+ "b85b9e54-4ce3-4ff0-b949-f695e127634d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212705Z:b85b9e54-4ce3-4ff0-b949-f695e127634d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "286f8edd-0194-4915-b0bd-25d4227f9c18"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12475"
+ ],
+ "x-ms-correlation-request-id": [
+ "b18f8937-661e-4a40-b2b5-ee9533416d03"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:b18f8937-661e-4a40-b2b5-ee9533416d03"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5415d5b4-9bcf-468d-97a4-507a0b4cfe22"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12474"
+ ],
+ "x-ms-correlation-request-id": [
+ "8bcdc1fa-3e68-4fda-9a23-e6fa723bf0ee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:8bcdc1fa-3e68-4fda-9a23-e6fa723bf0ee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:05 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",
+ "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/profisee/ArtifactTypes/VMImage/Offers/maestro-base-server/Skus/maestrosibase/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d715f0f2-738c-4e39-90c8-26776cd0c9aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12473"
+ ],
+ "x-ms-correlation-request-id": [
+ "b1cc845a-098a-47c0-8ed8-051e8797a177"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:b1cc845a-098a-47c0-8ed8-051e8797a177"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6a2c90e2-dab0-46f4-b4b9-2fbc2538db5b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12472"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b8bb990-f3d6-4226-9395-71d4469b19b0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:5b8bb990-f3d6-4226-9395-71d4469b19b0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "81b1a920-6616-434b-9edd-0ed28e21b822"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12471"
+ ],
+ "x-ms-correlation-request-id": [
+ "f317a9be-66d5-4dc5-9f90-f4518790ff80"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:f317a9be-66d5-4dc5-9f90-f4518790ff80"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "493"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc2e8cbc-2731-4851-824e-0e4bb9b47084"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12470"
+ ],
+ "x-ms-correlation-request-id": [
+ "692d56b9-4018-40b7-84c6-fd6a85067a2f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:692d56b9-4018-40b7-84c6-fd6a85067a2f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f101e7cd-d53d-4a3f-93eb-861069cffef1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12469"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2b911fe-7518-4d78-a658-43cbe844023a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:d2b911fe-7518-4d78-a658-43cbe844023a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "376"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fc5f2e79-f4d7-469b-bea2-6430834ceffe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12468"
+ ],
+ "x-ms-correlation-request-id": [
+ "531ba3ed-dd27-4720-9c30-49c7dc48b041"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:531ba3ed-dd27-4720-9c30-49c7dc48b041"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "642ab13f-64a9-445c-9732-fb423e637509"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12467"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f2afd77-acd1-4a71-843f-878b8b7d9386"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:5f2afd77-acd1-4a71-843f-878b8b7d9386"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "376"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b313025e-5995-44bb-9589-51fdd5862a13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12466"
+ ],
+ "x-ms-correlation-request-id": [
+ "15de0b43-0865-4f44-8d86-95acd6da59d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:15de0b43-0865-4f44-8d86-95acd6da59d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "de53f6ad-9d52-4969-9189-a3f3cff8bc8a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12465"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c911278-90ff-43ef-b60b-f9f6dc23632e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212706Z:9c911278-90ff-43ef-b60b-f9f6dc23632e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "adb656eb-fc96-42aa-95da-cabfe0fe9bb0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12464"
+ ],
+ "x-ms-correlation-request-id": [
+ "36f4d2f0-9082-42c4-b9cd-88ed40c17d10"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:36f4d2f0-9082-42c4-b9cd-88ed40c17d10"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "319"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9789b0ef-265b-49fc-878d-7d799a0249bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12463"
+ ],
+ "x-ms-correlation-request-id": [
+ "1679fa6a-cb81-45e9-8cdc-05d2a633e6bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:1679fa6a-cb81-45e9-8cdc-05d2a633e6bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:06 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "308"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "624f94f1-8499-4ee1-8d72-db2031a7d4bc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12462"
+ ],
+ "x-ms-correlation-request-id": [
+ "01cb449b-1477-4f13-806c-a4ab57ff5655"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:01cb449b-1477-4f13-806c-a4ab57ff5655"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "568"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "14ff3be0-cc53-43ed-b88e-946a02c08d52"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12461"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa0de4a8-fe20-4e89-8037-08fe50668676"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:aa0de4a8-fe20-4e89-8037-08fe50668676"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "235"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "13475e13-e917-4304-8040-791587e20a35"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12460"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e81656d-974a-4162-a7e3-6bee1de63fd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:8e81656d-974a-4162-a7e3-6bee1de63fd8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "236"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "66304e81-6731-477e-9d68-4cc9d2388389"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12459"
+ ],
+ "x-ms-correlation-request-id": [
+ "20ef6752-f7ae-42ba-b99a-1ffd94d97add"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:20ef6752-f7ae-42ba-b99a-1ffd94d97add"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3f7d9d11-98d5-4ce1-b36e-641d10bb6f5f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12458"
+ ],
+ "x-ms-correlation-request-id": [
+ "485678f0-c451-44b3-8d02-83d9e4d18a47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:485678f0-c451-44b3-8d02-83d9e4d18a47"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "458"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b1ba37e9-5d6a-44ca-b666-606511bfc7a6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12457"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3e33a07-c980-416a-8faf-b05ee05f9d95"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:f3e33a07-c980-416a-8faf-b05ee05f9d95"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "513"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ecc89390-5c1b-4584-ba20-d591b5da8611"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12456"
+ ],
+ "x-ms-correlation-request-id": [
+ "8114f1d7-0ba4-4076-aca4-7de8f9b9b691"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:8114f1d7-0ba4-4076-aca4-7de8f9b9b691"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59e23f2f-d5d5-411a-a540-7a5e680dbeee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12455"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f217610-172a-44a9-9e3f-58d33e9c51af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212707Z:0f217610-172a-44a9-9e3f-58d33e9c51af"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4ac9ef84-3c47-45a4-b728-2491018fab94"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12454"
+ ],
+ "x-ms-correlation-request-id": [
+ "0c90b4ba-d770-4065-bb1e-148dec199e7b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:0c90b4ba-d770-4065-bb1e-148dec199e7b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:07 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5b5208f8-02d5-4694-8fec-0f2aa79b59ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12453"
+ ],
+ "x-ms-correlation-request-id": [
+ "db01c937-20b9-4221-b9dc-e1abb7533f1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:db01c937-20b9-4221-b9dc-e1abb7533f1b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a5715cfd-029c-4280-8e74-fef9d98a848d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12452"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f026680-8249-47d9-82e1-37daf6ea06e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:5f026680-8249-47d9-82e1-37daf6ea06e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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==",
+ "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.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]",
+ "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": [
+ "092de839-cedb-41d6-ad0e-2fa038f0e973"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12451"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c92308f-e4e8-44f1-96bf-3aae17b31197"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:1c92308f-e4e8-44f1-96bf-3aae17b31197"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "45dcd433-f222-4f0e-9a3f-bcdb2b29ecd4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12450"
+ ],
+ "x-ms-correlation-request-id": [
+ "f51cb20d-4e79-404f-8e27-59d1f58b981a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:f51cb20d-4e79-404f-8e27-59d1f58b981a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "06544467-0156-4aec-bdd0-d0a776526492"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12449"
+ ],
+ "x-ms-correlation-request-id": [
+ "0da74d46-6c07-457d-856b-9c98d4a65341"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:0da74d46-6c07-457d-856b-9c98d4a65341"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "89a58bef-cbec-4d83-9c26-7cf922a85731"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12448"
+ ],
+ "x-ms-correlation-request-id": [
+ "669e4442-0e3f-4efe-8410-a643e6725eac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:669e4442-0e3f-4efe-8410-a643e6725eac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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==",
+ "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/remotelearner/ArtifactTypes/VMImage/Offers/fully-supported-moodle/Skus/version27/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e0186ee1-013f-44ff-8180-0e3a0a6a707f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12447"
+ ],
+ "x-ms-correlation-request-id": [
+ "0351004b-57cd-4428-939b-dfec01a9239e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:0351004b-57cd-4428-939b-dfec01a9239e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "510"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a96a1b7d-51b4-4082-9663-5ad692513d64"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12446"
+ ],
+ "x-ms-correlation-request-id": [
+ "f6b65004-a12b-4bcc-8764-b0207e4cbe5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212708Z:f6b65004-a12b-4bcc-8764-b0207e4cbe5d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "515"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "564761ee-e5b4-42ee-81b6-abc829116a86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12445"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ae5b287-7b25-45af-a03f-1b6ff1a3d195"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:2ae5b287-7b25-45af-a03f-1b6ff1a3d195"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "497"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2205a477-89a1-4f29-90b8-2447f4488f6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12444"
+ ],
+ "x-ms-correlation-request-id": [
+ "13bd61e2-e40d-4a99-967a-05bd56d9905b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:13bd61e2-e40d-4a99-967a-05bd56d9905b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:08 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4823"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "be425ee7-df86-48f2-a5b5-5249594e0ac9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12443"
+ ],
+ "x-ms-correlation-request-id": [
+ "24e165cc-e5ce-471e-b1fa-10d4a8db72f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:24e165cc-e5ce-471e-b1fa-10d4a8db72f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "0e8ce8d9-8542-4127-bf1f-41875f52609a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12442"
+ ],
+ "x-ms-correlation-request-id": [
+ "b396eb66-cf4e-4dfb-8250-fbc26b69f4a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:b396eb66-cf4e-4dfb-8250-fbc26b69f4a1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "100bba6f-2a34-44a9-bfff-56eeff239cfa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12441"
+ ],
+ "x-ms-correlation-request-id": [
+ "0696764f-711d-4c04-b786-4758c7603d62"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:0696764f-711d-4c04-b786-4758c7603d62"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "339b46a0-c486-414b-96ef-9c09c81c8166"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12440"
+ ],
+ "x-ms-correlation-request-id": [
+ "944c8263-7b99-46d2-b2a8-0f880556f33c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:944c8263-7b99-46d2-b2a8-0f880556f33c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "a2c0beae-a2c6-465d-91d9-0b973fe02676"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12439"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0c88c75-0d77-4a1c-bd27-d7aec75686e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:f0c88c75-0d77-4a1c-bd27-d7aec75686e1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "58bf5f9d-0fb4-4014-9080-85db4cfe0122"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12438"
+ ],
+ "x-ms-correlation-request-id": [
+ "3bc38b70-9667-4525-a669-bed00b39c161"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:3bc38b70-9667-4525-a669-bed00b39c161"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "57a97312-97a6-45d0-87e6-950e213b33b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12437"
+ ],
+ "x-ms-correlation-request-id": [
+ "feacef02-4be9-4177-80c6-7ac0764a30df"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:feacef02-4be9-4177-80c6-7ac0764a30df"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "a29c5e59-bea6-435e-b865-cabb18742512"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12436"
+ ],
+ "x-ms-correlation-request-id": [
+ "d90ee23b-1ff9-429d-987c-781df9f52262"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212709Z:d90ee23b-1ff9-429d-987c-781df9f52262"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "e533ee33-4ad1-43e0-8b46-0eda1da0258a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12435"
+ ],
+ "x-ms-correlation-request-id": [
+ "98386384-6121-4b2f-bbea-61913a6cf2e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:98386384-6121-4b2f-bbea-61913a6cf2e3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "dae2015f-4789-4d05-81d7-153af3dac4cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12434"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4f9c06d-b6cf-4e63-b7a2-135a09ffca0f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:c4f9c06d-b6cf-4e63-b7a2-135a09ffca0f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "a37f9512-4bb5-491c-ba0a-b484a3666bff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12433"
+ ],
+ "x-ms-correlation-request-id": [
+ "e67429a6-acf4-4940-b2a8-bbfa0c6bd7e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:e67429a6-acf4-4940-b2a8-bbfa0c6bd7e9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:09 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",
+ "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\": \"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}",
+ "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": [
+ "279616fd-75ea-433d-b33b-bea11e4a0233"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12432"
+ ],
+ "x-ms-correlation-request-id": [
+ "3660243c-746b-4b64-90cf-59e753dbcebf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:3660243c-746b-4b64-90cf-59e753dbcebf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "03362f40-b451-4afe-a276-bbd535bb5c2c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12431"
+ ],
+ "x-ms-correlation-request-id": [
+ "12af3502-71ec-4091-b6a4-8463c0aefd98"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:12af3502-71ec-4091-b6a4-8463c0aefd98"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "f9c05555-cb05-41b5-b938-16a5f90cd104"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12430"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b2d229c-85b7-4e78-ac65-192b21ede587"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:9b2d229c-85b7-4e78-ac65-192b21ede587"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "43c3dc72-f440-4fb4-8dc3-7cee205f839a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12429"
+ ],
+ "x-ms-correlation-request-id": [
+ "843ff9dd-17a9-4463-a0b9-08df48b6bd6e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:843ff9dd-17a9-4463-a0b9-08df48b6bd6e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "7a351143-bfdf-4b6c-be14-41636f127b18"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12428"
+ ],
+ "x-ms-correlation-request-id": [
+ "2be79e54-dcc3-4893-856d-b7ec712459dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:2be79e54-dcc3-4893-856d-b7ec712459dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "c4c862e2-7714-4bc7-a84f-027ac38756b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12427"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb123efb-0b50-413f-bb24-cbf6271b445e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:eb123efb-0b50-413f-bb24-cbf6271b445e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "53cd21aa-c9b4-4092-adbc-8634e2368c31"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12426"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e06530e-b989-47b2-a041-0d628f2debda"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212710Z:6e06530e-b989-47b2-a041-0d628f2debda"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c862217-ab02-439c-8fc7-361bd1c26f1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12425"
+ ],
+ "x-ms-correlation-request-id": [
+ "23a7b86f-9011-4ae9-8ad7-9f5ffdf6a413"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:23a7b86f-9011-4ae9-8ad7-9f5ffdf6a413"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "807"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dc568748-5c30-4328-945d-ed61b7959e69"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12424"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6f09547-b8ee-4aeb-ba3a-62595c98c626"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:b6f09547-b8ee-4aeb-ba3a-62595c98c626"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "4b0f0174-9185-492c-b997-5ab3cc6643d0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12423"
+ ],
+ "x-ms-correlation-request-id": [
+ "71675355-eb1a-4a7f-8096-c2d4757ea9ae"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:71675355-eb1a-4a7f-8096-c2d4757ea9ae"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:10 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",
+ "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\": \"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}",
+ "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": [
+ "aa985fb5-8e3c-4438-bade-cee2ebbcdffb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12422"
+ ],
+ "x-ms-correlation-request-id": [
+ "76b2a757-7e1a-47f6-bc21-3ac6a11314bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:76b2a757-7e1a-47f6-bc21-3ac6a11314bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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",
+ "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\": \"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}",
+ "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": [
+ "8b29c6d7-d445-41d4-bbd2-010e184a23b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12421"
+ ],
+ "x-ms-correlation-request-id": [
+ "d55b1bed-e299-4022-9ca8-bca72b102459"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:d55b1bed-e299-4022-9ca8-bca72b102459"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "513"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "034e9afc-d312-4b71-b5d2-06bd3cbc338e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12420"
+ ],
+ "x-ms-correlation-request-id": [
+ "19bfc09f-8164-49e2-9583-9a7c0bc44f12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:19bfc09f-8164-49e2-9583-9a7c0bc44f12"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "3807"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e7f872e-2f34-4b17-892e-79293962ef50"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12419"
+ ],
+ "x-ms-correlation-request-id": [
+ "861bb7ce-2401-492d-8c72-dc2eeae8dea2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:861bb7ce-2401-492d-8c72-dc2eeae8dea2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c50c0b2c-605d-45fe-a1ed-21b11f6d788e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12418"
+ ],
+ "x-ms-correlation-request-id": [
+ "7e412dcc-8486-49bc-989a-ed13cc79824c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:7e412dcc-8486-49bc-989a-ed13cc79824c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "db82bfb6-aca2-4b54-8b20-9ecf90926814"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12417"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a7e0966-fa29-45f3-be6a-6c821776cda6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:2a7e0966-fa29-45f3-be6a-6c821776cda6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f71675e5-bb63-4f51-aa77-ec40fc26e094"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12416"
+ ],
+ "x-ms-correlation-request-id": [
+ "48402de1-f395-4321-839e-ef00e796205e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:48402de1-f395-4321-839e-ef00e796205e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f4fbd147-532f-4723-9057-097c109d54ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12415"
+ ],
+ "x-ms-correlation-request-id": [
+ "53685f28-bee1-4e09-afea-db0453f8d0cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212711Z:53685f28-bee1-4e09-afea-db0453f8d0cc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "32b2762c-eb0b-4483-9639-913ff02e7006"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12414"
+ ],
+ "x-ms-correlation-request-id": [
+ "61b1faa8-9c7b-4062-98f3-ad03b1c6a98e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:61b1faa8-9c7b-4062-98f3-ad03b1c6a98e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c21be731-06ef-4226-b7e6-2de784fcb083"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12413"
+ ],
+ "x-ms-correlation-request-id": [
+ "3c73c0ec-e4c3-4530-a74a-cc3b594fd7fb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:3c73c0ec-e4c3-4530-a74a-cc3b594fd7fb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a7befc8f-4409-4323-84b7-b8ca8284f67f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12412"
+ ],
+ "x-ms-correlation-request-id": [
+ "619696ab-b4aa-417f-a9fa-bdadf86d9ff9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:619696ab-b4aa-417f-a9fa-bdadf86d9ff9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:11 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c8677638-f9cc-4aa1-892b-85e65c140e21"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12411"
+ ],
+ "x-ms-correlation-request-id": [
+ "f95e3993-28c0-4c87-b2f2-8aa15e12c6c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:f95e3993-28c0-4c87-b2f2-8aa15e12c6c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2a4eb0a-28d0-4b38-949a-76dc56020a3b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12410"
+ ],
+ "x-ms-correlation-request-id": [
+ "e51cd193-03b9-488e-bc9a-9439f323fee2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:e51cd193-03b9-488e-bc9a-9439f323fee2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3963ff98-1962-48c0-b221-47bb8b682f86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12409"
+ ],
+ "x-ms-correlation-request-id": [
+ "3683a696-cc3c-422f-9656-d53844a4d524"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:3683a696-cc3c-422f-9656-d53844a4d524"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d8c2e8e2-504a-47a2-bddd-8ae702462e72"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12408"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d2630c8-e7b3-4f85-9ed2-dc4b3815a516"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:0d2630c8-e7b3-4f85-9ed2-dc4b3815a516"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "58d53dda-66df-4cc5-af9d-71c3b2f2447d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12407"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3b4d4e2-53a2-4255-876b-de9d897025e5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:c3b4d4e2-53a2-4255-876b-de9d897025e5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "372"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a91c966c-c590-458c-a60e-7e4e117f8e8d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12406"
+ ],
+ "x-ms-correlation-request-id": [
+ "9d150e5b-f8a3-4e72-ae01-76f19b0e5582"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:9d150e5b-f8a3-4e72-ae01-76f19b0e5582"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "372"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78beb56c-26ca-4743-b583-9c6aa555d21a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12405"
+ ],
+ "x-ms-correlation-request-id": [
+ "5f446007-f84f-4d0e-9919-54b2bbad0fc1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212712Z:5f446007-f84f-4d0e-9919-54b2bbad0fc1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1363"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f8a5de0c-02b5-4e95-aa7d-6924c253a895"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12404"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcd47083-1893-49a2-ac13-f0175bf847a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:fcd47083-1893-49a2-ac13-f0175bf847a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bfaf1f51-1e8e-4459-98c2-da2121569e5a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12403"
+ ],
+ "x-ms-correlation-request-id": [
+ "24c422e2-be5b-465a-bbd7-28e4cb80d12d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:24c422e2-be5b-465a-bbd7-28e4cb80d12d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "092afd52-0945-4b3e-9333-17cbb353c84a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12402"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f8f9753-8a28-411c-b408-6400f317bb64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:8f8f9753-8a28-411c-b408-6400f317bb64"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:12 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ccf23209-39c5-4ec1-b83d-a1a1ca9721c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12401"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f3f4612-55c3-48aa-98a2-c58c724cf631"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:7f3f4612-55c3-48aa-98a2-c58c724cf631"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdd94031-41e9-4fa7-ae01-72f0f8a9a06d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12400"
+ ],
+ "x-ms-correlation-request-id": [
+ "4478a9d2-e11c-4d76-af68-f94638583999"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:4478a9d2-e11c-4d76-af68-f94638583999"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "374"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a686efa3-ab2f-4f24-ba6d-14abf252302e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12399"
+ ],
+ "x-ms-correlation-request-id": [
+ "2694bce2-fa27-4626-aafd-346e987f57eb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:2694bce2-fa27-4626-aafd-346e987f57eb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4937d8d1-8def-4b44-9f50-9332ece1450b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12398"
+ ],
+ "x-ms-correlation-request-id": [
+ "614ef392-c282-49c5-8959-e65e673dd016"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:614ef392-c282-49c5-8959-e65e673dd016"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "4247"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e9e29b23-9696-479f-a389-224c26b42e5a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12397"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9189845-c6ba-4a4b-8d18-3ba27733c03d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:b9189845-c6ba-4a4b-8d18-3ba27733c03d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1161"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0851a3ed-3bed-4b20-a7fc-89c2ca0fd63a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12396"
+ ],
+ "x-ms-correlation-request-id": [
+ "fef78879-0fee-40b8-acc9-3e70cae881a8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:fef78879-0fee-40b8-acc9-3e70cae881a8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d22f22ab-7621-4ea2-91c6-eac8c6df7241"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12395"
+ ],
+ "x-ms-correlation-request-id": [
+ "2add6de1-231e-471b-a939-c3952ff3dea2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212713Z:2add6de1-231e-471b-a939-c3952ff3dea2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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}",
+ "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": [
+ "2c19f15e-5b63-4bcd-b590-3f7a20df2731"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12394"
+ ],
+ "x-ms-correlation-request-id": [
+ "91d644ba-3eda-43bc-ae4e-59b5a0060b61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:91d644ba-3eda-43bc-ae4e-59b5a0060b61"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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}",
+ "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": [
+ "668ae4df-e431-40ce-88f2-fbaee22c204a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12393"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f6b45e6-b022-4c72-a8ac-d3973e72d7d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:9f6b45e6-b022-4c72-a8ac-d3973e72d7d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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}",
+ "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": [
+ "22729375-5988-4816-b51c-e3a170fc6465"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12392"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c010882-925b-42ea-bbea-9adf9b1733cc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:2c010882-925b-42ea-bbea-9adf9b1733cc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:13 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "585"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2043c1f0-d5cb-47fb-ba8a-beaa73a2a24f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12391"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5c5f3a6-b135-4d6c-89de-522722487a99"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:c5c5f3a6-b135-4d6c-89de-522722487a99"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fff33c4e-f5e8-45cb-a3ed-90ad1176182b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12390"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5949f65-ba37-485c-8f4f-443c5e8e173b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:e5949f65-ba37-485c-8f4f-443c5e8e173b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "395"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2b5215cd-3964-456b-91aa-806cfcbb84b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12389"
+ ],
+ "x-ms-correlation-request-id": [
+ "f591b2fd-aea5-46ca-83dc-c93c0d7434b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:f591b2fd-aea5-46ca-83dc-c93c0d7434b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "607"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "30a5b4ec-fca4-46df-acaf-97a0b666d281"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12388"
+ ],
+ "x-ms-correlation-request-id": [
+ "99db9cbe-783a-4343-b76d-563d7771e7d8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:99db9cbe-783a-4343-b76d-563d7771e7d8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d132977a-766d-49d3-80a9-7ea83f21a4dc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12387"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbe5ed7e-453f-4074-9d72-83875c8ef876"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:bbe5ed7e-453f-4074-9d72-83875c8ef876"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2f4198ad-d8d8-4407-9783-7638478b5757"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12386"
+ ],
+ "x-ms-correlation-request-id": [
+ "c81a3a2d-fa3b-4441-b3b5-06505fc07a1d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212714Z:c81a3a2d-fa3b-4441-b3b5-06505fc07a1d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1227"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b218ba6-dd1b-4fac-bf3d-6dd1bee2871b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12385"
+ ],
+ "x-ms-correlation-request-id": [
+ "31588aa3-3e4e-46e8-9143-51e1aa8aa549"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:31588aa3-3e4e-46e8-9143-51e1aa8aa549"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f1c60634-2ce7-4082-86de-84e0485462c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12384"
+ ],
+ "x-ms-correlation-request-id": [
+ "066c6c66-b192-46f2-bcdd-96e3f5ae9abd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:066c6c66-b192-46f2-bcdd-96e3f5ae9abd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7594930d-ebf4-45ae-b359-e913db1a08a5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12383"
+ ],
+ "x-ms-correlation-request-id": [
+ "fbab9be0-395d-42aa-bb2e-d8a9638bf245"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:fbab9be0-395d-42aa-bb2e-d8a9638bf245"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "409"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e01e37fc-b66c-4656-8972-4083dbea42c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12382"
+ ],
+ "x-ms-correlation-request-id": [
+ "dec3402f-d2c2-4fa9-89fc-c8edd13e81d2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:dec3402f-d2c2-4fa9-89fc-c8edd13e81d2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:14 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "409"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a2e2bb4a-2c9f-47e7-88db-03162bf13f66"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12381"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4459d24-4888-4bf2-a41d-f6fd59d0fb4a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:b4459d24-4888-4bf2-a41d-f6fd59d0fb4a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1205"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2de1ce9d-a635-446d-b37d-378387fb183f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12380"
+ ],
+ "x-ms-correlation-request-id": [
+ "074cf223-edfc-4523-b659-7d3941ac3378"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:074cf223-edfc-4523-b659-7d3941ac3378"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "406"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d11f8a0-d9c8-4119-a16d-9d0e3c009927"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12379"
+ ],
+ "x-ms-correlation-request-id": [
+ "39f542ef-4196-4fc3-8e54-3faf82cff75d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:39f542ef-4196-4fc3-8e54-3faf82cff75d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b53dddc8-d765-4a52-b433-217fc010c858"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12378"
+ ],
+ "x-ms-correlation-request-id": [
+ "015e2bfa-709e-4c0e-803e-d1f1a45a7241"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:015e2bfa-709e-4c0e-803e-d1f1a45a7241"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2e18d021-3eff-4bf7-a2f1-ff801770d83b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12377"
+ ],
+ "x-ms-correlation-request-id": [
+ "93fcae99-d931-4b4b-9512-118e2f7ae1c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:93fcae99-d931-4b4b-9512-118e2f7ae1c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "78f518a3-0022-4e4c-b2b9-7c49f05169ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12376"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea859461-71c2-4af2-b13a-9b7114943793"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:ea859461-71c2-4af2-b13a-9b7114943793"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "921"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4198e5fd-3489-43da-af07-d755f793e153"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12375"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f7f57c3-73d9-4a3b-9f00-194f69185f69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212715Z:7f7f57c3-73d9-4a3b-9f00-194f69185f69"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09ae3e03-b6aa-4696-865c-3ed109fe9238"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12374"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ed1c318-45fe-4bab-867b-182aa95e0887"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:1ed1c318-45fe-4bab-867b-182aa95e0887"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "88a82728-0c0a-4ad7-91a6-1516f60d425b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12373"
+ ],
+ "x-ms-correlation-request-id": [
+ "96bc4b2a-7a34-40ca-bf75-06801a6ed176"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:96bc4b2a-7a34-40ca-bf75-06801a6ed176"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a29948cc-0994-4304-aee1-b1935181dd40"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12372"
+ ],
+ "x-ms-correlation-request-id": [
+ "3da0a047-187e-4777-b6ea-56a23f87ff64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:3da0a047-187e-4777-b6ea-56a23f87ff64"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "933"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6d68d018-3b28-4901-9010-4b3ccfe2a5fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12371"
+ ],
+ "x-ms-correlation-request-id": [
+ "90bc3add-62cd-4564-b412-b9b5d23ffbb3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:90bc3add-62cd-4564-b412-b9b5d23ffbb3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:15 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",
+ "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\": \"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}",
+ "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": [
+ "ccf72dd7-4ac7-46cf-a275-0e3c6d4c2abc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12370"
+ ],
+ "x-ms-correlation-request-id": [
+ "6f4186e3-780c-40b5-820d-c30dfb0a3d8b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:6f4186e3-780c-40b5-820d-c30dfb0a3d8b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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",
+ "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\": \"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}",
+ "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": [
+ "dcf43d06-d179-4bec-bb93-5f22e636af32"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12369"
+ ],
+ "x-ms-correlation-request-id": [
+ "bfaf0728-18b1-4965-a3e7-27e770c9f6a4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:bfaf0728-18b1-4965-a3e7-27e770c9f6a4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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",
+ "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\": \"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}",
+ "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": [
+ "bc9d29e0-0c20-4b3a-96f9-92d8caa0c43e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12368"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d24ab15-75ca-4e6a-b66b-f244f4a477a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:3d24ab15-75ca-4e6a-b66b-f244f4a477a0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "912"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76a21900-5391-4204-b8a5-54f57551c8dd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12367"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8bfc4f4-cc11-42ab-9872-508226471c08"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:f8bfc4f4-cc11-42ab-9872-508226471c08"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "403795b9-8fa5-4a88-8534-9da67c0392ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12366"
+ ],
+ "x-ms-correlation-request-id": [
+ "d06aa90c-77f1-4b3f-9753-19c2f114e762"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:d06aa90c-77f1-4b3f-9753-19c2f114e762"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9adaa053-0168-40b2-8cf5-1282db97bb23"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12365"
+ ],
+ "x-ms-correlation-request-id": [
+ "c771b532-4fbf-4889-bb31-5cffb76fc6d3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212716Z:c771b532-4fbf-4889-bb31-5cffb76fc6d3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "407"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "05ee3a34-f5fd-407e-931a-3f595c0752b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12364"
+ ],
+ "x-ms-correlation-request-id": [
+ "281d69cf-dc67-4e48-bc7f-9070c430e194"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:281d69cf-dc67-4e48-bc7f-9070c430e194"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "924"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "319cad09-07cd-4981-a442-651e09d9c49a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12363"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc555ec3-cfd5-42b2-ab2d-f6af4ebebd82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:dc555ec3-cfd5-42b2-ab2d-f6af4ebebd82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e5f27fa7-085f-4d30-8a51-e94ae148d6ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12362"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c45b119-4310-4e70-a347-005047d8e188"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:1c45b119-4310-4e70-a347-005047d8e188"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3b2f4f1-e0aa-44f6-854e-adca2a3a12b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12361"
+ ],
+ "x-ms-correlation-request-id": [
+ "d9b33ca0-1500-4564-8685-b0ec54e16a89"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:d9b33ca0-1500-4564-8685-b0ec54e16a89"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "411"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed61ba09-c50b-4f59-9edc-a534f794c260"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12360"
+ ],
+ "x-ms-correlation-request-id": [
+ "1bb1224b-cbeb-40e4-8164-e88a2df79c60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:1bb1224b-cbeb-40e4-8164-e88a2df79c60"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:16 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cdd3845d-c779-4d8f-9e55-a41e4bf912c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12359"
+ ],
+ "x-ms-correlation-request-id": [
+ "a65234a6-828e-4aef-918c-c83a878e1821"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:a65234a6-828e-4aef-918c-c83a878e1821"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "403"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f55c81f0-d405-47fe-bfcb-e226e88bc2c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12358"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc4f9a83-1d4b-479e-8672-966ae0b28fe9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:cc4f9a83-1d4b-479e-8672-966ae0b28fe9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "18e5cfce-a1e2-4e55-9dcd-34e151d72d23"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12357"
+ ],
+ "x-ms-correlation-request-id": [
+ "82c645f9-b907-4833-993d-e08bb5bbee0b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:82c645f9-b907-4833-993d-e08bb5bbee0b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "38ba8872-4a97-4bdb-bfeb-cb8fe6714000"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12356"
+ ],
+ "x-ms-correlation-request-id": [
+ "45c0694e-a6ca-453d-a29c-66a5677ff27d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:45c0694e-a6ca-453d-a29c-66a5677ff27d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "401"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3a93b297-69b4-4666-a797-b830b063dcb9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12355"
+ ],
+ "x-ms-correlation-request-id": [
+ "78823f3c-befa-4c7a-a246-e952e3e94eef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:78823f3c-befa-4c7a-a246-e952e3e94eef"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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==",
+ "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\": \"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}",
+ "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": [
+ "09288255-0866-4677-9fd5-87adae173154"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12354"
+ ],
+ "x-ms-correlation-request-id": [
+ "c7e68c28-2ff8-4e49-adcc-1391563bc678"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212717Z:c7e68c28-2ff8-4e49-adcc-1391563bc678"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1543"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "949c6e81-e573-4f58-915d-985cde8f6a3e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12353"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c66ed91-72b5-4da3-ac32-03f80ac849c8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:6c66ed91-72b5-4da3-ac32-03f80ac849c8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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=",
+ "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\": \"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}",
+ "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": [
+ "8bd8a386-0839-43f3-beaf-9d2311ffdc37"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12352"
+ ],
+ "x-ms-correlation-request-id": [
+ "98360088-dd82-4a1c-a720-5168de57e03d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:98360088-dd82-4a1c-a720-5168de57e03d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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==",
+ "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\": \"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}",
+ "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": [
+ "988e4caf-abc7-4036-a995-753f8f9404d0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12351"
+ ],
+ "x-ms-correlation-request-id": [
+ "8dc62b92-2401-46e7-88db-de22eb52b584"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:8dc62b92-2401-46e7-88db-de22eb52b584"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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==",
+ "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\": \"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}",
+ "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": [
+ "a175891c-2b2a-49a2-bed6-e60cba75922d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12350"
+ ],
+ "x-ms-correlation-request-id": [
+ "7d6e9565-4351-4dd6-bed3-0a80e2500e35"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:7d6e9565-4351-4dd6-bed3-0a80e2500e35"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:17 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==",
+ "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\": \"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}",
+ "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": [
+ "b37da4f4-893e-492a-92b2-69d3a50d8c2c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12349"
+ ],
+ "x-ms-correlation-request-id": [
+ "7fa7329e-4447-424c-9414-c39aae2c6646"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:7fa7329e-4447-424c-9414-c39aae2c6646"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "410"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e4f4fcc-a490-4c26-b47a-ff91065c18ad"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12348"
+ ],
+ "x-ms-correlation-request-id": [
+ "34250ec9-3953-4212-ab97-800e8c751fec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:34250ec9-3953-4212-ab97-800e8c751fec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "936"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "022eead4-80f8-4cef-b083-ceb91eb011f3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12347"
+ ],
+ "x-ms-correlation-request-id": [
+ "3363398c-d452-4f54-bad5-3443e597540d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:3363398c-d452-4f54-bad5-3443e597540d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "844eb537-1e51-4cff-93d1-3d6373e189b8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12346"
+ ],
+ "x-ms-correlation-request-id": [
+ "601356f1-6fb3-4b63-a59f-02f53492f409"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:601356f1-6fb3-4b63-a59f-02f53492f409"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7f894b05-dd64-458c-85fc-79a261f9db67"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12345"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd6ccdda-0b01-4f38-899a-d617d9886118"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:cd6ccdda-0b01-4f38-899a-d617d9886118"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "415"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c85a38f-9897-4b59-87a6-2c727e1ed6b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12344"
+ ],
+ "x-ms-correlation-request-id": [
+ "3d191b2e-9ba0-4ce0-88ff-9c6a9b5dfd21"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212718Z:3d191b2e-9ba0-4ce0-88ff-9c6a9b5dfd21"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "948"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54ca538b-6256-49cc-87b6-23fb84b46f16"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12343"
+ ],
+ "x-ms-correlation-request-id": [
+ "25fa14f5-692d-4a86-99ea-22c479444eec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:25fa14f5-692d-4a86-99ea-22c479444eec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8aa92fa3-5a97-4e32-b7a8-770cdf39f0fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12342"
+ ],
+ "x-ms-correlation-request-id": [
+ "252a3b5c-8833-42cd-8b6f-ae3f8da007ed"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:252a3b5c-8833-42cd-8b6f-ae3f8da007ed"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "793ef4b6-aac1-422a-98a1-193bae0b9c5e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12341"
+ ],
+ "x-ms-correlation-request-id": [
+ "d13664cc-84bc-406c-a05f-550bdb7675f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:d13664cc-84bc-406c-a05f-550bdb7675f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "419"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bdb19bd2-acf4-40c8-9f2a-58d0e2845eef"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12340"
+ ],
+ "x-ms-correlation-request-id": [
+ "839769a3-1cc9-4de6-a90c-43f00e5b6a90"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:839769a3-1cc9-4de6-a90c-43f00e5b6a90"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "60db1886-0e03-4468-bf52-d2926136aa60"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12339"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1853302-a158-445e-a468-d91063d63414"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:f1853302-a158-445e-a468-d91063d63414"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:18 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "404"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1e37b1d5-aed4-411a-90c6-9935b2b93f79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12338"
+ ],
+ "x-ms-correlation-request-id": [
+ "32801d00-369f-4b41-87a5-2f50c0f79f7a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:32801d00-369f-4b41-87a5-2f50c0f79f7a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3be6c204-0df3-41a7-a5cd-4e2451d09f00"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12337"
+ ],
+ "x-ms-correlation-request-id": [
+ "95c29f9d-ba43-4b6d-a205-9fa07dffc420"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:95c29f9d-ba43-4b6d-a205-9fa07dffc420"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "791c6e2c-a112-4025-bec1-a243949627e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12336"
+ ],
+ "x-ms-correlation-request-id": [
+ "1aa53b8d-6574-4f95-a415-caba5ee4305b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:1aa53b8d-6574-4f95-a415-caba5ee4305b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "287"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f484a606-1533-46af-8328-b2355c5c0089"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12335"
+ ],
+ "x-ms-correlation-request-id": [
+ "b47fae07-d785-49f5-a8f1-889ce18e9a73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:b47fae07-d785-49f5-a8f1-889ce18e9a73"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "564"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "66024bbf-5f04-4067-87ab-5fa5aeb6118e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12334"
+ ],
+ "x-ms-correlation-request-id": [
+ "a59007b3-189c-48ef-8c0d-ba567c9fbcad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212719Z:a59007b3-189c-48ef-8c0d-ba567c9fbcad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fd5afd18-7a21-436e-8e99-9049814bf59b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12333"
+ ],
+ "x-ms-correlation-request-id": [
+ "af187111-6216-4938-98b5-1a4aa605a92e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:af187111-6216-4938-98b5-1a4aa605a92e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a1edcc0e-0e99-4ebb-95f0-abddf6bafbd1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12332"
+ ],
+ "x-ms-correlation-request-id": [
+ "45ba85ff-d122-46c6-b5df-a6acf17675c1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:45ba85ff-d122-46c6-b5df-a6acf17675c1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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}",
+ "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": [
+ "8938e898-b238-4562-b4ce-fdbc0391ac93"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12331"
+ ],
+ "x-ms-correlation-request-id": [
+ "2b36a90e-492d-444e-aec0-0246bcc2982c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:2b36a90e-492d-444e-aec0-0246bcc2982c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "246"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba997810-d675-44e4-99b6-626c15a24822"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12330"
+ ],
+ "x-ms-correlation-request-id": [
+ "875ede13-f26d-434c-a958-1a861fc9d5d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:875ede13-f26d-434c-a958-1a861fc9d5d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "515"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f7817f2c-ef76-4ff5-b7ef-19b2f0c337cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12329"
+ ],
+ "x-ms-correlation-request-id": [
+ "45ffb695-474d-4590-b165-06ec5a9f4827"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:45ffb695-474d-4590-b165-06ec5a9f4827"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:19 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "539"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69fd60ab-60e5-467a-9305-28944022b16c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12328"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cb8b684-da86-440d-a8cc-4d1f06b42c1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:9cb8b684-da86-440d-a8cc-4d1f06b42c1b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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}",
+ "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": [
+ "841327b7-0c12-4981-9d61-7874045de684"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12327"
+ ],
+ "x-ms-correlation-request-id": [
+ "856d6cc0-cedc-44fd-b07e-82bce2277642"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:856d6cc0-cedc-44fd-b07e-82bce2277642"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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}",
+ "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": [
+ "de69f514-a69b-4dc3-9a56-279c08c46305"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12326"
+ ],
+ "x-ms-correlation-request-id": [
+ "e1a0b84f-4056-4732-bfe5-e93d93e69f2d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:e1a0b84f-4056-4732-bfe5-e93d93e69f2d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "539"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af4e74bd-233f-447e-94b7-6f66e327b158"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12325"
+ ],
+ "x-ms-correlation-request-id": [
+ "31cf1674-4f59-44a9-a7bc-2929cacf313f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:31cf1674-4f59-44a9-a7bc-2929cacf313f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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}",
+ "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": [
+ "e7af7283-3c37-48c3-b81b-819fe2138e01"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12324"
+ ],
+ "x-ms-correlation-request-id": [
+ "dea7ba33-07db-4d5b-8b3e-2266e1d9bf5a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212720Z:dea7ba33-07db-4d5b-8b3e-2266e1d9bf5a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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}",
+ "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": [
+ "b40bfae0-5c96-45fb-a1c1-199d580170b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12323"
+ ],
+ "x-ms-correlation-request-id": [
+ "07a330de-97ef-4580-9c0e-c1aad40c9a51"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:07a330de-97ef-4580-9c0e-c1aad40c9a51"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "410957b8-118b-4801-8bfb-0ca8db3cbccd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12322"
+ ],
+ "x-ms-correlation-request-id": [
+ "21ee02be-3faf-43b3-ae96-e1328b04980f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:21ee02be-3faf-43b3-ae96-e1328b04980f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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==",
+ "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\": \"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]",
+ "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": [
+ "8b105293-77f9-466c-848b-129239047fc1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12321"
+ ],
+ "x-ms-correlation-request-id": [
+ "d772933a-5c10-44dd-884b-0cbd8bd95b8d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:d772933a-5c10-44dd-884b-0cbd8bd95b8d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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=",
+ "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/saltstack/ArtifactTypes/VMImage/Offers/centos65saltstackenterprise/Skus/sse-01/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8e7a979c-95ff-4a2a-bbdf-d5a85ab7491e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12320"
+ ],
+ "x-ms-correlation-request-id": [
+ "4b9d065d-1b79-42b0-9658-3010f3dd4734"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:4b9d065d-1b79-42b0-9658-3010f3dd4734"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:20 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "18fc8e2b-c0e1-4cca-adb2-fd6c23b76c49"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12319"
+ ],
+ "x-ms-correlation-request-id": [
+ "fdc0eed9-5234-44c2-ab01-a8df2ab1daa4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:fdc0eed9-5234-44c2-ab01-a8df2ab1daa4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e51d93c5-e007-497a-a6fd-8b6c2bdadb79"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12318"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1a1c8bb-e33c-4d75-b285-72f442d88afc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:f1a1c8bb-e33c-4d75-b285-72f442d88afc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "758"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a85d3a1-5d6c-426f-bccf-528a3ab152ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12317"
+ ],
+ "x-ms-correlation-request-id": [
+ "803ca79b-086c-406d-a46e-9be6a0148ce2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:803ca79b-086c-406d-a46e-9be6a0148ce2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "48a1e3d9-2708-442d-92e2-1ac1cebe8247"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12316"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e047fa7-d92e-4af4-8098-b6f7458898a5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212721Z:4e047fa7-d92e-4af4-8098-b6f7458898a5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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/scalearc/ArtifactTypes/VMImage/Offers/scalearc-v3-5-1/Skus/byol-351/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c59fa0a2-b9b5-4bd8-9b7c-8939ac23c0d6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12315"
+ ],
+ "x-ms-correlation-request-id": [
+ "8ed6f9cc-6679-42f8-9470-e9c6fcc0d9a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:8ed6f9cc-6679-42f8-9470-e9c6fcc0d9a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "12e1c054-1d2e-4a47-929f-b7950c00e556"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12314"
+ ],
+ "x-ms-correlation-request-id": [
+ "3efd73a5-30f4-4bd8-8bb9-da6e34fec5de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:3efd73a5-30f4-4bd8-8bb9-da6e34fec5de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e4091a7b-9766-460e-be1b-b28835909f6f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12313"
+ ],
+ "x-ms-correlation-request-id": [
+ "10d25b97-40ea-43f2-ac77-5ceaee06c692"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:10d25b97-40ea-43f2-ac77-5ceaee06c692"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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=",
+ "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/scalearc/ArtifactTypes/VMImage/Offers/scalearc_mysql-server/Skus/byol_mysql/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8601d15b-8e4c-4e0f-b294-e9c3c00c3f6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12312"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1c34f06-64e2-401c-93a6-1dccba0db18f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:d1c34f06-64e2-401c-93a6-1dccba0db18f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33d0e953-48d9-4ab1-87be-dc01e668762e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12311"
+ ],
+ "x-ms-correlation-request-id": [
+ "bb52fc48-eea4-44b9-bd38-b808d7dd0c25"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:bb52fc48-eea4-44b9-bd38-b808d7dd0c25"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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==",
+ "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\": \"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]",
+ "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": [
+ "a3e3227a-5ec4-4d3f-8e02-e8d71c45b1f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12310"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f44aba0-ca28-4cc6-839a-6bd0f60d2302"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:4f44aba0-ca28-4cc6-839a-6bd0f60d2302"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:21 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39ee51e6-9493-4a5f-8597-939d28369fba"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12309"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea20e9c4-6464-4ce3-a5f0-d2382e492dd4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:ea20e9c4-6464-4ce3-a5f0-d2382e492dd4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "484"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b694a86c-e509-4608-b86c-85c0d3e86435"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12308"
+ ],
+ "x-ms-correlation-request-id": [
+ "af4ce8fd-6835-4eef-b627-24afc08756ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:af4ce8fd-6835-4eef-b627-24afc08756ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "9ac901a8-50ee-4f01-ba98-58b0e6cbcc74"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12307"
+ ],
+ "x-ms-correlation-request-id": [
+ "e203e1ae-7dd4-4952-a2e0-f7770aa89534"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:e203e1ae-7dd4-4952-a2e0-f7770aa89534"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "229"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b656e1ba-8f69-4454-903d-6af1a04a3173"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12306"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ae6cf40-378c-48bd-8651-42fcfa94e65b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212722Z:5ae6cf40-378c-48bd-8651-42fcfa94e65b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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\": \"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]",
+ "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": [
+ "1c6c61a2-4dfa-4002-b629-e6cffdea4043"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12305"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b66fccf-7508-460c-a0fa-25008f94061e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:7b66fccf-7508-460c-a0fa-25008f94061e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a76b36a3-80fb-4f18-a20d-076d9d6995ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12304"
+ ],
+ "x-ms-correlation-request-id": [
+ "1e84af00-28b8-4188-997f-510d2c5d0f97"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:1e84af00-28b8-4188-997f-510d2c5d0f97"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1075"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b3de2c0-97be-41e2-b449-c12878f258fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12303"
+ ],
+ "x-ms-correlation-request-id": [
+ "554a858c-0076-4faf-a38e-d1ee206d4675"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:554a858c-0076-4faf-a38e-d1ee206d4675"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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\": \"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]",
+ "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": [
+ "68e0b13c-bfee-4800-82bc-18a39f9c178c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12302"
+ ],
+ "x-ms-correlation-request-id": [
+ "2c9225e1-f9a1-4329-b1b5-60d72ea8e859"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:2c9225e1-f9a1-4329-b1b5-60d72ea8e859"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:22 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "295"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7d2fdd1f-25bf-42ad-887c-972203eba7d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12301"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3a0db19-08b3-495b-9a80-ce7cd8e44658"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:f3a0db19-08b3-495b-9a80-ce7cd8e44658"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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",
+ "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/searchblox/ArtifactTypes/VMImage/Offers/searchblox_server_v82/Skus/searchblox_win_version82/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": [
+ "64eadd38-8cad-4ae0-83e5-06a4986991cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12300"
+ ],
+ "x-ms-correlation-request-id": [
+ "29df24e5-fbee-4641-90c8-fb42fe7e91d9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:29df24e5-fbee-4641-90c8-fb42fe7e91d9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "534"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fde66f30-7ce7-4e29-99c7-ea8c325641c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12299"
+ ],
+ "x-ms-correlation-request-id": [
+ "397f028e-b0af-4aae-95d5-ac1c55c4ab27"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:397f028e-b0af-4aae-95d5-ac1c55c4ab27"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "539"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4b567b02-40e7-4658-b2f2-bc339ddb3823"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12298"
+ ],
+ "x-ms-correlation-request-id": [
+ "6dfdcd5f-ed08-4c07-b0f0-daa384574175"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212723Z:6dfdcd5f-ed08-4c07-b0f0-daa384574175"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "76ee9456-146e-40c6-b68e-9134f9aa0ad0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12297"
+ ],
+ "x-ms-correlation-request-id": [
+ "3efcdeaf-93e2-4f90-9d65-d00ad2c557de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:3efcdeaf-93e2-4f90-9d65-d00ad2c557de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2aac52c3-db2c-4884-9364-7c0430c37be0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12296"
+ ],
+ "x-ms-correlation-request-id": [
+ "ea004baf-e70a-42a1-8e23-0712ff1c288f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:ea004baf-e70a-42a1-8e23-0712ff1c288f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "510"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "659dce05-f743-4ea2-8aa0-e384a6200475"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12295"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cafac2c-097e-4c8c-8b5d-0dad2b369b06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:7cafac2c-097e-4c8c-8b5d-0dad2b369b06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "324"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e3d6d087-91a5-4c08-95a0-2804ef72dde4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12294"
+ ],
+ "x-ms-correlation-request-id": [
+ "92972955-37c0-4c58-aceb-a077549f9e85"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:92972955-37c0-4c58-aceb-a077549f9e85"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "311"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0b4117d2-dbfa-49c5-8038-1d6204fac7b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12293"
+ ],
+ "x-ms-correlation-request-id": [
+ "28507fca-4ba9-4915-b8ce-0f6625972487"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:28507fca-4ba9-4915-b8ce-0f6625972487"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:23 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "616"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "18196998-cf36-44aa-86ac-0a2045c9959a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12292"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8f3f735-49e1-43af-a0e2-26670dfb0d5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:e8f3f735-49e1-43af-a0e2-26670dfb0d5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d427fcae-08bd-4f18-a672-e9e94e99eb49"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12291"
+ ],
+ "x-ms-correlation-request-id": [
+ "756366a7-193d-4e4b-8674-f79187df9082"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:756366a7-193d-4e4b-8674-f79187df9082"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "335"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1032e3b4-b49d-4390-b545-1b7f567b59d6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12290"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e2bbdb4-4777-4b72-8a7e-0d59b547e8f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212724Z:9e2bbdb4-4777-4b72-8a7e-0d59b547e8f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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=",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f3bb632b-1b53-499b-a3a3-dff6d72108de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12289"
+ ],
+ "x-ms-correlation-request-id": [
+ "b0d73505-ffa1-4db9-8d80-d79267b17db9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:b0d73505-ffa1-4db9-8d80-d79267b17db9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "580"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "38b72487-9e73-439a-ba82-dc0750389c12"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12288"
+ ],
+ "x-ms-correlation-request-id": [
+ "cace8686-924b-4c6a-b6d1-437f8cfa1ce0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:cace8686-924b-4c6a-b6d1-437f8cfa1ce0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "237"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c8f4b424-151d-4b57-a113-f7564cbf015a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12287"
+ ],
+ "x-ms-correlation-request-id": [
+ "f23648db-1838-4d95-ba92-384ba10c1060"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:f23648db-1838-4d95-ba92-384ba10c1060"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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==",
+ "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\": \"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]",
+ "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": [
+ "219c1ad1-4212-4ab5-886b-b4b56fddfb66"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12286"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4685ade-c4c8-4315-bca9-024fb867df88"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:a4685ade-c4c8-4315-bca9-024fb867df88"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:24 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==",
+ "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\": \"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]",
+ "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": [
+ "67b44d13-deca-4bd5-ad33-c0fe6ce09169"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12285"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c7190c9-55df-4f14-8691-28d19ea5d6b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:7c7190c9-55df-4f14-8691-28d19ea5d6b4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "77f5a789-9605-4a4b-8680-a85e645c920f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12284"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7a6fb96-0dbb-42c7-83e0-85a9f77b172b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:d7a6fb96-0dbb-42c7-83e0-85a9f77b172b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d4969c75-2ba7-49bb-8d45-de8d4961fb76"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12283"
+ ],
+ "x-ms-correlation-request-id": [
+ "0f2c560e-6bf8-436b-9dcb-3c3cc5101739"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:0f2c560e-6bf8-436b-9dcb-3c3cc5101739"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "16262508-1c34-44c4-a0f2-4ef8a279fb1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12282"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f5719c0-aa71-4c25-95f9-31af494fb863"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212725Z:3f5719c0-aa71-4c25-95f9-31af494fb863"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "04f8cde5-f57e-4d19-b145-2603b30db914"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12281"
+ ],
+ "x-ms-correlation-request-id": [
+ "afb4f8e0-1190-45dc-add5-c4ef895e3556"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:afb4f8e0-1190-45dc-add5-c4ef895e3556"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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==",
+ "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\": \"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}",
+ "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": [
+ "8aa30df2-5024-4188-9c34-e8275c9531f4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12280"
+ ],
+ "x-ms-correlation-request-id": [
+ "f32862dc-2359-41ea-bc5b-ac7d564a9a38"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:f32862dc-2359-41ea-bc5b-ac7d564a9a38"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5164849a-6a7a-4609-9784-432193744d04"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12279"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac1fd07e-981a-4b64-bb21-f5d25ff8a0b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:ac1fd07e-981a-4b64-bb21-f5d25ff8a0b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "05581a67-81db-4712-828d-f5b5c98bedf4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12278"
+ ],
+ "x-ms-correlation-request-id": [
+ "87a845ea-d382-44ae-87a4-5d63e9f589bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:87a845ea-d382-44ae-87a4-5d63e9f589bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "206e8b87-49fe-4841-9312-7b5488aa3a23"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12277"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3c84e73-f492-41c6-a312-754060e17620"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:c3c84e73-f492-41c6-a312-754060e17620"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:25 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "532"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "582b6cb4-16d5-4e11-9f26-1e733286ccd7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12276"
+ ],
+ "x-ms-correlation-request-id": [
+ "117d5f3b-5715-4466-85ac-e0a3f64444ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:117d5f3b-5715-4466-85ac-e0a3f64444ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "924bb07b-22ff-4f02-b62e-1e6a68f0e2b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12275"
+ ],
+ "x-ms-correlation-request-id": [
+ "b91191de-8353-41d9-ae37-bcdf3336cec9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:b91191de-8353-41d9-ae37-bcdf3336cec9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "62aeb2cf-70b3-43e2-a8f0-97daba7f1a83"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12274"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e8395cc-814e-461a-a47d-aa00c2cc1301"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:6e8395cc-814e-461a-a47d-aa00c2cc1301"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ec6aaefb-fa0b-4cbb-95f9-7e7408b99f43"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12273"
+ ],
+ "x-ms-correlation-request-id": [
+ "54b7fdab-00b7-4ab2-a07b-96c028332090"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212726Z:54b7fdab-00b7-4ab2-a07b-96c028332090"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "19d47a08-a298-4f5b-bf5b-8282775a3a5e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12272"
+ ],
+ "x-ms-correlation-request-id": [
+ "db962dd7-1e98-4a0d-a823-24836828b16c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:db962dd7-1e98-4a0d-a823-24836828b16c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0deb2c7b-a505-44b1-b175-f6ac076e8444"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12271"
+ ],
+ "x-ms-correlation-request-id": [
+ "d16fb606-aa68-48db-8488-5486444f8d55"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:d16fb606-aa68-48db-8488-5486444f8d55"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "801"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0147ded7-e813-4ff0-b915-e79925c47139"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12270"
+ ],
+ "x-ms-correlation-request-id": [
+ "5374257c-6302-48f4-9340-317e1b7ca863"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:5374257c-6302-48f4-9340-317e1b7ca863"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-company/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cb3abbce-63cb-4b22-a573-ab14d6d212cc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12269"
+ ],
+ "x-ms-correlation-request-id": [
+ "84c713e4-9d54-4c2d-82ab-273fe67921b3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:84c713e4-9d54-4c2d-82ab-273fe67921b3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a3cecc9-d406-48b3-9986-3cd7367aef21"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12268"
+ ],
+ "x-ms-correlation-request-id": [
+ "58b2f155-953f-4d0a-b56c-2913cc4f70d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:58b2f155-953f-4d0a-b56c-2913cc4f70d6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-starter/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c3bb4e04-3572-4b1a-ae37-00fbdb8c4cb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12267"
+ ],
+ "x-ms-correlation-request-id": [
+ "36832b00-6165-48a4-9a7d-4b4ad7fd552c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:36832b00-6165-48a4-9a7d-4b4ad7fd552c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "39a82ff9-5d57-4f59-9624-78aa4d8f6148"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12266"
+ ],
+ "x-ms-correlation-request-id": [
+ "587ff7ff-b4a9-4f1e-8fd9-461e26a2845c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:587ff7ff-b4a9-4f1e-8fd9-461e26a2845c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:26 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==",
+ "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/snip2code/ArtifactTypes/VMImage/Offers/snip2codeprivateinstance/Skus/s2c-team/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0582eeef-07a0-4c12-9e54-8f05f324d734"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12265"
+ ],
+ "x-ms-correlation-request-id": [
+ "b917646b-8079-4b47-9d72-2d80988c82b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:b917646b-8079-4b47-9d72-2d80988c82b4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "34479380-4491-43d3-9369-584b14d1b531"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12264"
+ ],
+ "x-ms-correlation-request-id": [
+ "dd6f3e06-9263-49c1-8316-9e6ecd72030d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:dd6f3e06-9263-49c1-8316-9e6ecd72030d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8eeaec47-cf9e-4f26-a07d-a2166d30f2e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12263"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4cb8349-7798-4306-bd14-28c07042f732"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212727Z:b4cb8349-7798-4306-bd14-28c07042f732"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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",
+ "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\": \"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]",
+ "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": [
+ "1c9d7414-b6e7-4cda-a6d9-7965be22fb2c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12262"
+ ],
+ "x-ms-correlation-request-id": [
+ "b00cbe85-dfcc-4e94-a25c-76dcafbe3e6d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:b00cbe85-dfcc-4e94-a25c-76dcafbe3e6d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e635f6ad-0990-462d-9aae-bc8b07abf064"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12261"
+ ],
+ "x-ms-correlation-request-id": [
+ "e92c58f8-355b-40d7-9274-e21ab3464b9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:e92c58f8-355b-40d7-9274-e21ab3464b9d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "85703b51-0ea5-4a2a-9b5e-a73e57771eb6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12260"
+ ],
+ "x-ms-correlation-request-id": [
+ "c3684b45-a996-4eb9-85a4-4e2b8a2b2a5c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:c3684b45-a996-4eb9-85a4-4e2b8a2b2a5c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1671939a-0647-40dd-b384-785378deb9c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12259"
+ ],
+ "x-ms-correlation-request-id": [
+ "12fa5b8e-0f9c-4373-acb7-e0ee09559e9f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:12fa5b8e-0f9c-4373-acb7-e0ee09559e9f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "488"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "40a42238-7a44-4427-aee0-d5dd9fb1a555"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12258"
+ ],
+ "x-ms-correlation-request-id": [
+ "eaf25b1a-efde-45f7-992f-af8c9de2b03e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:eaf25b1a-efde-45f7-992f-af8c9de2b03e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21d14bb6-c20b-43fe-a810-0dadc60f2227"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12257"
+ ],
+ "x-ms-correlation-request-id": [
+ "7cb0a169-204f-4b16-ab81-7047bebd9f41"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:7cb0a169-204f-4b16-ab81-7047bebd9f41"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:27 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "504"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a3ad24c5-d3d3-4f34-a717-d87ea5527cf1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12256"
+ ],
+ "x-ms-correlation-request-id": [
+ "97433fe6-1675-42c6-8a09-67c1273bcd40"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:97433fe6-1675-42c6-8a09-67c1273bcd40"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "234"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c3e7352d-72b5-4270-b7da-2ac5111af86c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12255"
+ ],
+ "x-ms-correlation-request-id": [
+ "dda30089-65a5-422f-84b3-79556267c71b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:dda30089-65a5-422f-84b3-79556267c71b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1087"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab964ab5-3666-4b0c-bf8a-b78fb7c9d89d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12254"
+ ],
+ "x-ms-correlation-request-id": [
+ "a05a416e-c76c-46d5-ac16-fec6bb45f30c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212728Z:a05a416e-c76c-46d5-ac16-fec6bb45f30c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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==",
+ "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/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_basic_plan/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": [
+ "1188d744-20f7-4251-9358-f2f2cd3ff34d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12253"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba77fbb4-d43c-46be-8446-690cd8b593c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:ba77fbb4-d43c-46be-8446-690cd8b593c2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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==",
+ "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\": \"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}",
+ "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": [
+ "4f100bdf-3d2e-40fd-80dd-877765b9ab3b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12252"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac304868-f90a-44e2-87c5-9c9be9599071"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:ac304868-f90a-44e2-87c5-9c9be9599071"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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",
+ "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/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_free_plan/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "270"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "36c6808e-8d10-43d8-bc2a-517af6783fa6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12251"
+ ],
+ "x-ms-correlation-request-id": [
+ "c6fd016f-95d2-4d56-bc21-1527db06aeb8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:c6fd016f-95d2-4d56-bc21-1527db06aeb8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3c3f77e7-47b4-44fe-8439-df1e541e252e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12250"
+ ],
+ "x-ms-correlation-request-id": [
+ "884bfafc-ba8f-4332-b8d4-ee0a3b992d56"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:884bfafc-ba8f-4332-b8d4-ee0a3b992d56"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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",
+ "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/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_premium_plan/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "97692492-6925-460b-9004-40191c9821b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12249"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ef2546e-f0f5-48fc-99af-a84d9cb7ba5e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:9ef2546e-f0f5-48fc-99af-a84d9cb7ba5e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "496"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "28c0b029-8f53-4042-86b9-19d47b2c96ff"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12248"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc65baa0-f633-4813-aa4d-86a162ff4030"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:dc65baa0-f633-4813-aa4d-86a162ff4030"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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==",
+ "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/soha/ArtifactTypes/VMImage/Offers/soha-cloud/Skus/soha_cloud_standard_plan/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c58529fa-5cb0-40fa-afc3-806bf5fdbdbb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12247"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b29e8ab-d1db-4326-8c8c-ded14a85dcc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:9b29e8ab-d1db-4326-8c8c-ded14a85dcc0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "498"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d420cea2-4dcd-45ce-acb4-2697f7d99318"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12246"
+ ],
+ "x-ms-correlation-request-id": [
+ "d21c0326-2c38-48b1-a7e4-5215220bbe95"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:d21c0326-2c38-48b1-a7e4-5215220bbe95"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:28 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=",
+ "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\": \"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]",
+ "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": [
+ "68d373f3-4f38-4ea0-b348-1d174be04c41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12245"
+ ],
+ "x-ms-correlation-request-id": [
+ "2ea6c9e0-f984-46bb-b037-200948aaa290"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:2ea6c9e0-f984-46bb-b037-200948aaa290"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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",
+ "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\": \"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]",
+ "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": [
+ "d0d4ca2b-fae4-472e-a5ba-cc96abe5722b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12244"
+ ],
+ "x-ms-correlation-request-id": [
+ "27447e92-0f0c-4e05-8f8c-7af123c0761e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212729Z:27447e92-0f0c-4e05-8f8c-7af123c0761e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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",
+ "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/solanolabs/ArtifactTypes/VMImage/Offers/solano-ci-private-beta/Skus/20150603/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "03e31fad-5352-463c-958f-b4a3cc327b89"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12243"
+ ],
+ "x-ms-correlation-request-id": [
+ "60c94b4b-85c4-4e60-b4ca-14f0c1825b8a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:60c94b4b-85c4-4e60-b4ca-14f0c1825b8a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9a234ba5-aa54-4241-afe1-23d2b24bf413"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12242"
+ ],
+ "x-ms-correlation-request-id": [
+ "f537448f-316f-4ba2-bfd6-ae652276e8f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:f537448f-316f-4ba2-bfd6-ae652276e8f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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=",
+ "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\": \"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]",
+ "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": [
+ "97638bed-19dc-4028-b102-569ccde05456"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12241"
+ ],
+ "x-ms-correlation-request-id": [
+ "9febdd35-d3ba-4e74-b009-06629fbadb7a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:9febdd35-d3ba-4e74-b009-06629fbadb7a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b08cf5e1-e035-4c2f-a90b-91c84e7f8d9e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12240"
+ ],
+ "x-ms-correlation-request-id": [
+ "52feceea-3d70-41f9-96fc-02af5f5ade1c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:52feceea-3d70-41f9-96fc-02af5f5ade1c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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=",
+ "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/spacecurve/ArtifactTypes/VMImage/Offers/spacecurve-quickstart/Skus/sc-qs/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3286b889-dd8f-4d0e-acf6-3f69d5a06424"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12239"
+ ],
+ "x-ms-correlation-request-id": [
+ "ec986fbd-9baa-4603-ac99-f8836e8e6bd1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:ec986fbd-9baa-4603-ac99-f8836e8e6bd1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "494"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "57a4a0e0-b3f0-4713-bf7e-2be6f1e04b85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12238"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e9035fb-d378-4a39-acff-3ff8e9f45613"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:8e9035fb-d378-4a39-acff-3ff8e9f45613"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "fb809c2f-cb77-4480-9717-113e0fa13fbb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12237"
+ ],
+ "x-ms-correlation-request-id": [
+ "1fe70a71-a71a-4b16-9537-80d349f58025"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:1fe70a71-a71a-4b16-9537-80d349f58025"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:29 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d3b36028-57ee-4fc4-bef0-e4653e85da9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12236"
+ ],
+ "x-ms-correlation-request-id": [
+ "16f2f87b-f4ab-404d-8476-0d09db9f97e9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:16f2f87b-f4ab-404d-8476-0d09db9f97e9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "46440bc8-2763-413f-b71d-1cdca2f6c7e0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12235"
+ ],
+ "x-ms-correlation-request-id": [
+ "b8488944-b181-4a6a-9639-c32f39cfb86b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212730Z:b8488944-b181-4a6a-9639-c32f39cfb86b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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==",
+ "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\": \"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]",
+ "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": [
+ "3818544b-ecf3-4119-bae9-195220816718"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12234"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f02deee-14e9-4516-8626-27b122f2b6f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:2f02deee-14e9-4516-8626-27b122f2b6f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "46b2c9e8-330f-4203-82f0-046074adee72"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12233"
+ ],
+ "x-ms-correlation-request-id": [
+ "de3bcbbe-951e-4398-8e14-afda2b446cca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:de3bcbbe-951e-4398-8e14-afda2b446cca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9163b040-33e1-43e0-a025-dec97d63636b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12232"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f6f320d-70f6-4e74-976f-eee7f139f579"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:4f6f320d-70f6-4e74-976f-eee7f139f579"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1cfc2871-94f8-4af6-b073-b120bcc2cb57"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12231"
+ ],
+ "x-ms-correlation-request-id": [
+ "a0f3c485-d8b0-404b-b9ff-4996d9625626"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:a0f3c485-d8b0-404b-b9ff-4996d9625626"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e5f30e75-b1b2-4045-9282-c3fadf8a25a1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12230"
+ ],
+ "x-ms-correlation-request-id": [
+ "9cac6fef-636d-427c-b14f-4aeef0d2e22a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:9cac6fef-636d-427c-b14f-4aeef0d2e22a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "542"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d9a1607-5e23-4431-8add-194400e26723"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12229"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b53dbc1-b0b8-4d4f-874a-14ddc9c5e823"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:7b53dbc1-b0b8-4d4f-874a-14ddc9c5e823"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:30 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fac42927-40c3-4356-80e8-65ae0a021322"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12228"
+ ],
+ "x-ms-correlation-request-id": [
+ "71769d8e-36a1-4782-8299-4a443a0d7a50"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:71769d8e-36a1-4782-8299-4a443a0d7a50"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "253"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f23ba222-4b4a-4a5e-a18f-768feac56496"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12227"
+ ],
+ "x-ms-correlation-request-id": [
+ "8beec8df-2283-43b8-b6df-5da8bd08c7c2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212731Z:8beec8df-2283-43b8-b6df-5da8bd08c7c2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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/stackstorm/ArtifactTypes/VMImage/Offers/stackstorm-2015-1/Skus/scu-1/Versions/1.0.0\"\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": [
+ "cbbb8162-c5a4-4168-a687-14420dbf7488"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12226"
+ ],
+ "x-ms-correlation-request-id": [
+ "023d3586-0b81-49e0-ae50-1eabf921b3f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:023d3586-0b81-49e0-ae50-1eabf921b3f5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "486"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ae48b995-919a-40a9-93b3-39cfd1494d8a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12225"
+ ],
+ "x-ms-correlation-request-id": [
+ "12eb874c-3528-472a-86fd-c8afc82fd22b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:12eb874c-3528-472a-86fd-c8afc82fd22b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "491"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "152a5a50-a2f0-446f-917d-f18434e86666"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12224"
+ ],
+ "x-ms-correlation-request-id": [
+ "a195c0ba-5c02-47e6-963d-b6c117a6c300"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:a195c0ba-5c02-47e6-963d-b6c117a6c300"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cba6ad35-4b01-4a3e-ab16-fd1a97835373"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12223"
+ ],
+ "x-ms-correlation-request-id": [
+ "8d15acc3-47a7-4b62-a4dc-ad9ec4fa6755"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:8d15acc3-47a7-4b62-a4dc-ad9ec4fa6755"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9d683f05-f423-4577-ac8b-ac63c8ab4b75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12222"
+ ],
+ "x-ms-correlation-request-id": [
+ "3aae4650-c4d4-4e2a-9a03-3bc28f2f61ad"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:3aae4650-c4d4-4e2a-9a03-3bc28f2f61ad"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b795d27a-3f8c-4ec1-b955-f558154af554"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12221"
+ ],
+ "x-ms-correlation-request-id": [
+ "b40715a4-8163-45a8-ac90-33c0759e0bd0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:b40715a4-8163-45a8-ac90-33c0759e0bd0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "80f2018a-0f4c-42f5-861d-10b3d677ee1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12220"
+ ],
+ "x-ms-correlation-request-id": [
+ "9efcf59a-2e18-47ca-b616-407a77115533"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:9efcf59a-2e18-47ca-b616-407a77115533"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ff8e3b0b-81e5-43df-8117-e3aec8a70481"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12219"
+ ],
+ "x-ms-correlation-request-id": [
+ "df6a0256-497a-46b2-9621-c6f7d9a5525c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:df6a0256-497a-46b2-9621-c6f7d9a5525c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:31 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e696ec7-4a92-4829-9d3e-2333720557bf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12218"
+ ],
+ "x-ms-correlation-request-id": [
+ "63dc3050-99a3-440f-a94e-7ce01d617e03"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:63dc3050-99a3-440f-a94e-7ce01d617e03"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9be9ea7-cc71-40c9-b41e-0a67f24053f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12217"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbca6ff8-c9f0-41ae-8a01-0044db9cabdd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212732Z:bbca6ff8-c9f0-41ae-8a01-0044db9cabdd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "158e7f80-fe79-4250-b54c-ba994c39f9c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12216"
+ ],
+ "x-ms-correlation-request-id": [
+ "f664779b-9aed-4501-99dc-840eb29faed3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:f664779b-9aed-4501-99dc-840eb29faed3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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==",
+ "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\": \"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]",
+ "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": [
+ "ac60703d-987e-4e9a-9d67-76ecbf6bd84f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12215"
+ ],
+ "x-ms-correlation-request-id": [
+ "535b945b-bd74-41f2-84ca-14150d081f12"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:535b945b-bd74-41f2-84ca-14150d081f12"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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=",
+ "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\": \"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]",
+ "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": [
+ "f12fe78d-2c97-46dc-8ef8-a8ba0515a1a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12214"
+ ],
+ "x-ms-correlation-request-id": [
+ "87f4f73b-70c0-4152-8577-5238a8e6d296"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:87f4f73b-70c0-4152-8577-5238a8e6d296"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "60015995-1165-4535-8e89-6067a9557b73"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12213"
+ ],
+ "x-ms-correlation-request-id": [
+ "51eeb63b-a68a-4df4-801b-1262b157d7ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:51eeb63b-a68a-4df4-801b-1262b157d7ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0632d0c6-7772-4276-99fa-a949d8cfff00"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12212"
+ ],
+ "x-ms-correlation-request-id": [
+ "abbfbee7-202e-4d82-8e38-4de32a72413d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:abbfbee7-202e-4d82-8e38-4de32a72413d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3ec87f0d-7a31-4332-a8fe-c739dd2fdd6d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12211"
+ ],
+ "x-ms-correlation-request-id": [
+ "bbd8ab34-8cea-4353-8b4f-513cab9d0ee5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:bbd8ab34-8cea-4353-8b4f-513cab9d0ee5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "14791718-757a-4d57-aa1f-91e61c536bc3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12210"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2b3033a-b682-4202-986f-9f00f31fc7f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:c2b3033a-b682-4202-986f-9f00f31fc7f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "285"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b1b485d-511e-4ed6-9db9-0f675524c8e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12209"
+ ],
+ "x-ms-correlation-request-id": [
+ "6303f051-8c6c-42e4-a1fe-9866a6ff0604"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:6303f051-8c6c-42e4-a1fe-9866a6ff0604"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "520"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ee936b9a-6d45-4e80-b42e-aca914442452"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12208"
+ ],
+ "x-ms-correlation-request-id": [
+ "45bf1ad8-95a8-4e95-b0fc-09758e91fc64"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:45bf1ad8-95a8-4e95-b0fc-09758e91fc64"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:32 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",
+ "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\": \"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]",
+ "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": [
+ "c26be8b9-e49c-403c-9930-574686d72ad1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12207"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d8b2460-bf6f-4342-81be-c2264ef09d19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:2d8b2460-bf6f-4342-81be-c2264ef09d19"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "27bdc076-5510-4c79-af05-9515306a6db9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12206"
+ ],
+ "x-ms-correlation-request-id": [
+ "65f929b2-db20-4120-b3c8-610e9a2e8b61"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212733Z:65f929b2-db20-4120-b3c8-610e9a2e8b61"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8957d47e-c013-4216-9779-2c4ad8b87998"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12205"
+ ],
+ "x-ms-correlation-request-id": [
+ "eede39b1-3041-4ceb-b1d0-c403309bb023"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:eede39b1-3041-4ceb-b1d0-c403309bb023"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "560"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0da116fb-7d96-4c53-a341-18529cc166b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12204"
+ ],
+ "x-ms-correlation-request-id": [
+ "3127b564-48d8-4d03-b1e5-93359892191a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:3127b564-48d8-4d03-b1e5-93359892191a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "054fa74c-13b2-4f08-9f02-6a26a5147ce2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12203"
+ ],
+ "x-ms-correlation-request-id": [
+ "20da8f21-9537-4e64-bdcf-156ff92b5a8e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:20da8f21-9537-4e64-bdcf-156ff92b5a8e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "df17fd07-e9e8-420e-a0eb-56df5a8633b9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12202"
+ ],
+ "x-ms-correlation-request-id": [
+ "110edf8f-2ed8-4b6c-91f7-06ee77f3770e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:110edf8f-2ed8-4b6c-91f7-06ee77f3770e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "350"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8a04e71c-36f1-46fc-9c9e-b97fc45f8d41"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12201"
+ ],
+ "x-ms-correlation-request-id": [
+ "57731a08-94d4-4e1e-90a0-5fc91e39e6ba"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:57731a08-94d4-4e1e-90a0-5fc91e39e6ba"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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/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": [
+ "329"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "605bdd07-569f-479d-afd2-10d83f8130e3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12200"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ee9ce2e-9f4d-45a0-b475-7724c6ebe7dc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:4ee9ce2e-9f4d-45a0-b475-7724c6ebe7dc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "610"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7ad29a9e-d604-4656-8d3c-8e276da95215"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12199"
+ ],
+ "x-ms-correlation-request-id": [
+ "c47fb14a-250f-4ef2-bfb9-9aaaac68714a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:c47fb14a-250f-4ef2-bfb9-9aaaac68714a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:33 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1391"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ab199697-d03f-4d43-9f3c-d24fdd7f7f04"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12198"
+ ],
+ "x-ms-correlation-request-id": [
+ "78a39adf-155d-4695-89cd-d5e7e05c34ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:78a39adf-155d-4695-89cd-d5e7e05c34ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "469"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f1db3054-cf9d-47aa-ba57-8fd7c5a4db98"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12197"
+ ],
+ "x-ms-correlation-request-id": [
+ "946be9b9-f6ce-4da2-af3f-fb98e40725e8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212734Z:946be9b9-f6ce-4da2-af3f-fb98e40725e8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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",
+ "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\": \"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]",
+ "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": [
+ "e3a24aa5-28d2-4a4a-b67d-db01806f46c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12196"
+ ],
+ "x-ms-correlation-request-id": [
+ "2fd143c5-0c53-4386-a85b-dcaf1f2bcc78"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:2fd143c5-0c53-4386-a85b-dcaf1f2bcc78"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "361"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "657f9f78-f842-452f-b590-57cf276fc7f6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12195"
+ ],
+ "x-ms-correlation-request-id": [
+ "75f02593-9ec7-447f-b286-da8edcf60607"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:75f02593-9ec7-447f-b286-da8edcf60607"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "521"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bb55c76d-c655-4cab-aa65-5336495f648b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12194"
+ ],
+ "x-ms-correlation-request-id": [
+ "9ba39a68-de7a-4b6b-bb1c-036eaa082846"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:9ba39a68-de7a-4b6b-bb1c-036eaa082846"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "361"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d72e1fda-1062-4bdd-80a9-699677b5d66d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12193"
+ ],
+ "x-ms-correlation-request-id": [
+ "39520f2c-200f-477b-840e-de47b1c5b093"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:39520f2c-200f-477b-840e-de47b1c5b093"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "361"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3db0c5dd-59f8-4158-9fac-896a30df5803"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12192"
+ ],
+ "x-ms-correlation-request-id": [
+ "743f9ff1-33e9-436a-ae9d-d6ffe9447a84"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:743f9ff1-33e9-436a-ae9d-d6ffe9447a84"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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",
+ "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-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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "694"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b43e7df-be15-4783-bc73-97024da82595"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12191"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cd3de9b-7da8-422d-875f-393ce6ee997d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:3cd3de9b-7da8-422d-875f-393ce6ee997d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "774"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a45fae77-8cee-4add-b590-b88ca9c27b95"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12190"
+ ],
+ "x-ms-correlation-request-id": [
+ "87f4732b-0c93-4fd7-b6dc-4f03ddaa0421"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:87f4732b-0c93-4fd7-b6dc-4f03ddaa0421"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2d967ad1-6258-4ee3-81fa-4063766008ac"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12189"
+ ],
+ "x-ms-correlation-request-id": [
+ "02dba9ba-8369-4f18-bb1f-0c29661e080d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:02dba9ba-8369-4f18-bb1f-0c29661e080d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:34 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b7cfcd6f-82ec-4130-bd24-60bf7d3a2014"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12188"
+ ],
+ "x-ms-correlation-request-id": [
+ "75576c13-3ee7-4041-974a-3842a31119e1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:75576c13-3ee7-4041-974a-3842a31119e1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "414af20f-2fa9-4da3-9a49-ec9f7f27bda6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12187"
+ ],
+ "x-ms-correlation-request-id": [
+ "5ce15d8e-a220-486a-9129-6acc24fc7417"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212735Z:5ce15d8e-a220-486a-9129-6acc24fc7417"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "501516de-e9c6-4217-a8b4-5277bd225286"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12186"
+ ],
+ "x-ms-correlation-request-id": [
+ "41d80bc7-335e-4df6-84d7-1ba8995fee77"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:41d80bc7-335e-4df6-84d7-1ba8995fee77"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9ca2c547-0df2-4cf9-8802-e98b94d938cb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12185"
+ ],
+ "x-ms-correlation-request-id": [
+ "84c1873f-db15-4eb5-b875-c18ca7ccc612"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:84c1873f-db15-4eb5-b875-c18ca7ccc612"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1015"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "376fc42b-3785-4e4a-a64a-347aeac884b1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12184"
+ ],
+ "x-ms-correlation-request-id": [
+ "2beec066-b8d1-414d-9dae-e010a012ffb1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:2beec066-b8d1-414d-9dae-e010a012ffb1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "960a00ca-2fe9-46e1-a463-f8e0c8258f68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12183"
+ ],
+ "x-ms-correlation-request-id": [
+ "de2f6929-f0b7-4766-9707-c10148e92b24"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:de2f6929-f0b7-4766-9707-c10148e92b24"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6c020f37-edb2-4371-9f42-8a4f49f63a1f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12182"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6b91c67-dfa1-44e0-a0a8-c87b7fab6d1b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:b6b91c67-dfa1-44e0-a0a8-c87b7fab6d1b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1daaf737-993b-4ffa-9d6d-0cc7a581be87"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12181"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d1036d1-816e-4550-bb37-73c6132dc0c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:0d1036d1-816e-4550-bb37-73c6132dc0c6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "355"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10937f2a-a325-490c-9249-952bcd3b7948"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12180"
+ ],
+ "x-ms-correlation-request-id": [
+ "765fad3d-4ae3-4c71-b467-3d373ba9ab2b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:765fad3d-4ae3-4c71-b467-3d373ba9ab2b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "232"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "383247ea-4c7b-4ff9-a60d-28453052c319"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12179"
+ ],
+ "x-ms-correlation-request-id": [
+ "2417c661-7a62-431e-b94d-273d2b67ae2c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:2417c661-7a62-431e-b94d-273d2b67ae2c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:35 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f3ad89e-c24e-454a-945f-e0b294f61f0a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12178"
+ ],
+ "x-ms-correlation-request-id": [
+ "b014c880-ac7d-4fc8-beed-030aa687928b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:b014c880-ac7d-4fc8-beed-030aa687928b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "359"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "81310b81-ed42-4725-81bc-5edf69ac4c75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12177"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a1e1ae1-0b08-4542-a408-0310e2b11a15"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212736Z:1a1e1ae1-0b08-4542-a408-0310e2b11a15"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "241"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "54ca3419-2070-4af8-b97d-58f89d33648f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12176"
+ ],
+ "x-ms-correlation-request-id": [
+ "d357f3ef-da91-47ff-a36a-138111b0c8ea"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:d357f3ef-da91-47ff-a36a-138111b0c8ea"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e63b6249-deae-45a9-ac40-0ea92d7384cd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12175"
+ ],
+ "x-ms-correlation-request-id": [
+ "da6772e2-daa0-403f-a4eb-a119b1317389"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:da6772e2-daa0-403f-a4eb-a119b1317389"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ef386720-bdd9-4228-a41e-82fd7fea7ad5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12174"
+ ],
+ "x-ms-correlation-request-id": [
+ "caaf764f-f8fe-4fe8-9456-3eb1c97a326d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:caaf764f-f8fe-4fe8-9456-3eb1c97a326d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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-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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "721"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f343b2dc-74a0-477c-bc8b-4eab4e79d7b5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12173"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8908089-4f69-488d-adcd-c39f5f80354c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:e8908089-4f69-488d-adcd-c39f5f80354c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "801"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a8eb3e31-b23c-4391-9a52-c43079bb941b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12172"
+ ],
+ "x-ms-correlation-request-id": [
+ "6c06f9ca-43ae-4df6-a42f-375a78dcf838"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:6c06f9ca-43ae-4df6-a42f-375a78dcf838"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5e672fa4-3cfe-44ed-badd-78acd962d563"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12171"
+ ],
+ "x-ms-correlation-request-id": [
+ "28f0579a-67cd-44db-8ef2-1e9a871f213b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:28f0579a-67cd-44db-8ef2-1e9a871f213b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10cad11a-f595-4084-884b-c9b58c176b26"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12170"
+ ],
+ "x-ms-correlation-request-id": [
+ "91b63fb8-ff4b-4c6f-8630-b50f6b0511f5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:91b63fb8-ff4b-4c6f-8630-b50f6b0511f5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d86aa70d-8225-488c-9471-493d02900c22"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12169"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2bd9c50-1c1b-4002-a02d-de3227c5ed4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:a2bd9c50-1c1b-4002-a02d-de3227c5ed4d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "69a35527-916e-45ff-8c78-484edd05118b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12168"
+ ],
+ "x-ms-correlation-request-id": [
+ "76c64333-1add-42f5-ae4f-799d2df86ffc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:76c64333-1add-42f5-ae4f-799d2df86ffc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:36 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "368"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c0d96c22-19f7-4e19-9bf8-71df741ea8b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12167"
+ ],
+ "x-ms-correlation-request-id": [
+ "4bcacc9a-c093-4ca8-8a54-c090c3e3a53c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212737Z:4bcacc9a-c093-4ca8-8a54-c090c3e3a53c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1051"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "51733900-63c9-4313-b835-eeb7ded050ee"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12166"
+ ],
+ "x-ms-correlation-request-id": [
+ "8e63acc4-bf22-4ded-bb34-84da21707edc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:8e63acc4-bf22-4ded-bb34-84da21707edc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9c1d85db-56e8-462c-8548-8ff47f4d3ac2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12165"
+ ],
+ "x-ms-correlation-request-id": [
+ "74596239-2162-449e-8327-2f764b8ffb3e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:74596239-2162-449e-8327-2f764b8ffb3e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b36193d-74fa-4e5e-bfa1-c4e7bd97199a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12164"
+ ],
+ "x-ms-correlation-request-id": [
+ "3e82b84f-ffd6-4312-92fe-ba6f52813743"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:3e82b84f-ffd6-4312-92fe-ba6f52813743"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "520d341b-d54c-4ab3-ad67-e4a6c06f96b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12163"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e2b0560-e816-46ec-9b70-c92bdbf565c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:4e2b0560-e816-46ec-9b70-c92bdbf565c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "364"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8da50e59-1637-4d00-ac37-252a4e3d6df6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12162"
+ ],
+ "x-ms-correlation-request-id": [
+ "bcf8c942-c3f5-4ca5-af8b-e9547d6693f7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:bcf8c942-c3f5-4ca5-af8b-e9547d6693f7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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==",
+ "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-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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "483"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "01d15b77-323d-43ac-9b9c-4f0605d98535"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12161"
+ ],
+ "x-ms-correlation-request-id": [
+ "692a065c-6ba8-4b23-b6e7-98d08920e0db"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:692a065c-6ba8-4b23-b6e7-98d08920e0db"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "531"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d8801704-e63a-4927-b87f-18f6ed94269c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12160"
+ ],
+ "x-ms-correlation-request-id": [
+ "c602fd7e-79ba-42e2-a8f1-73499081e720"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:c602fd7e-79ba-42e2-a8f1-73499081e720"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "366"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bc125639-1890-40e9-8b1f-20773fe20277"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12159"
+ ],
+ "x-ms-correlation-request-id": [
+ "a29a6935-cce1-4f2d-8ece-1cbcbdc431bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:a29a6935-cce1-4f2d-8ece-1cbcbdc431bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "366"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3d523422-5fc8-47c0-9db1-b50354111e0b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12158"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4e90849-bb7c-4510-ba0e-0e30be3290fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:b4e90849-bb7c-4510-ba0e-0e30be3290fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:37 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "25aea50e-bb07-4ffb-afce-72e141ccc20d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12157"
+ ],
+ "x-ms-correlation-request-id": [
+ "8aaa3fdc-f985-4fe2-826f-ab1f7712f486"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212738Z:8aaa3fdc-f985-4fe2-826f-ab1f7712f486"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "eff68c84-44d0-494f-a7c5-b1e329f6f393"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12156"
+ ],
+ "x-ms-correlation-request-id": [
+ "c5cd1022-cc2f-4951-ae9a-9fc1b56861a0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:c5cd1022-cc2f-4951-ae9a-9fc1b56861a0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "b59969f0-a63c-46fd-bedf-49891579e57f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12155"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d7467c1-7232-4fca-aa98-5d2015d317a1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:4d7467c1-7232-4fca-aa98-5d2015d317a1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "e1c40fc1-c34a-4ddc-a402-85a85d56bf8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12154"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8e565ae-4cf2-400c-bb36-b086d0753bcb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:f8e565ae-4cf2-400c-bb36-b086d0753bcb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "7a4c55a3-5aa2-40b0-a9c5-0eb48bb983f5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12153"
+ ],
+ "x-ms-correlation-request-id": [
+ "40ad3ba9-d085-403e-b196-5d4e9bfe85fa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:40ad3ba9-d085-403e-b196-5d4e9bfe85fa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "52e2ce1c-c058-42f6-a54b-7d4ff6c9eec3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12152"
+ ],
+ "x-ms-correlation-request-id": [
+ "afc828dc-da71-4b12-bde7-aa87d637a343"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:afc828dc-da71-4b12-bde7-aa87d637a343"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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",
+ "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\": \"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]",
+ "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": [
+ "add4af7f-17f0-4c54-8659-8416202d366d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12151"
+ ],
+ "x-ms-correlation-request-id": [
+ "9f24f8e4-5261-4c93-8a1f-754791522731"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:9f24f8e4-5261-4c93-8a1f-754791522731"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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",
+ "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.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]",
+ "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": [
+ "2f218cba-0ab1-49a0-8f05-ee0bca67ead6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12150"
+ ],
+ "x-ms-correlation-request-id": [
+ "167c123c-d846-49d2-afaa-270346661509"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:167c123c-d846-49d2-afaa-270346661509"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "164b8999-7dd9-4c64-b064-14dd354172f7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12149"
+ ],
+ "x-ms-correlation-request-id": [
+ "7720d644-f1ad-4a1a-a867-09c105f95c60"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:7720d644-f1ad-4a1a-a867-09c105f95c60"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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==",
+ "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\": \"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]",
+ "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": [
+ "8f189dcd-f4f7-465f-8bb7-79db1351b443"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12148"
+ ],
+ "x-ms-correlation-request-id": [
+ "0a2e87c9-26bc-4912-9eb8-c6e873ea8253"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212739Z:0a2e87c9-26bc-4912-9eb8-c6e873ea8253"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:38 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==",
+ "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\": \"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]",
+ "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": [
+ "4fd44f88-d912-4251-b11b-5232fa63cb97"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12147"
+ ],
+ "x-ms-correlation-request-id": [
+ "d89fb087-a196-4554-b37b-4676061308b4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:d89fb087-a196-4554-b37b-4676061308b4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "43ffe19c-8095-4727-b57e-f6c9cb11d1aa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12146"
+ ],
+ "x-ms-correlation-request-id": [
+ "987210a5-cff3-4971-b0ac-851cadc8d1fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:987210a5-cff3-4971-b0ac-851cadc8d1fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "532"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91e3fd4d-dfce-4910-b4e8-496436218f7e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12145"
+ ],
+ "x-ms-correlation-request-id": [
+ "711b96ae-431c-4f3b-910f-9c8f8f4fc5ac"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:711b96ae-431c-4f3b-910f-9c8f8f4fc5ac"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1f97a9b-3b1e-4183-a340-8fedd0b1c674"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12144"
+ ],
+ "x-ms-correlation-request-id": [
+ "27ab336d-6c16-4daf-915c-4316262720ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:27ab336d-6c16-4daf-915c-4316262720ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c69be90b-9a71-41b0-8b17-949a23b7a9c3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12143"
+ ],
+ "x-ms-correlation-request-id": [
+ "ccde124d-247f-4771-8a7e-332faa8d3ce8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:ccde124d-247f-4771-8a7e-332faa8d3ce8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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=",
+ "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/tavendo/ArtifactTypes/VMImage/Offers/crossbar_on_azure_ubuntu1404/Skus/free/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "85c6a4bf-9db7-4cc8-9759-7fbff5776546"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12142"
+ ],
+ "x-ms-correlation-request-id": [
+ "496bba3b-b09b-431a-bd27-257086f4b344"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:496bba3b-b09b-431a-bd27-257086f4b344"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "17bdd3c3-5b63-473c-81c7-932489b28b1e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12141"
+ ],
+ "x-ms-correlation-request-id": [
+ "78d04eb9-7258-45c6-82ff-4b42d266c0bf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:78d04eb9-7258-45c6-82ff-4b42d266c0bf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:39 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "284e7022-2599-419f-8d79-03721b0b7f8b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12140"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5473afd-791e-4813-bb93-0a4a58813d86"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212740Z:a5473afd-791e-4813-bb93-0a4a58813d86"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e80d5a5-67ae-4ae1-a078-7b78f41a33c2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12139"
+ ],
+ "x-ms-correlation-request-id": [
+ "d98428a3-a854-42ac-b096-165aa90ac466"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:d98428a3-a854-42ac-b096-165aa90ac466"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "278"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "08d27757-2845-4969-9346-3e4cdb22f066"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12138"
+ ],
+ "x-ms-correlation-request-id": [
+ "62e0e078-f6d2-45fe-9822-99b44c5f0a89"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:62e0e078-f6d2-45fe-9822-99b44c5f0a89"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "36ee0192-a60d-419a-be6a-e190c582f475"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12137"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a6f210d-3e34-46be-9cf3-aefaed1bece3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:9a6f210d-3e34-46be-9cf3-aefaed1bece3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "225"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "63ebe9fb-c119-4697-ba3c-69ec83047784"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12136"
+ ],
+ "x-ms-correlation-request-id": [
+ "494ef800-058c-4352-aea5-508378992cc0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:494ef800-058c-4352-aea5-508378992cc0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "235"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6202462a-2314-413b-a5b9-a4d607e8e9d5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12135"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1f40eb9-aa7e-4cf2-a4d4-1d6052a6a860"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:f1f40eb9-aa7e-4cf2-a4d4-1d6052a6a860"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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/telepat/ArtifactTypes/VMImage/Offers/free/Skus/free/Versions/1.0.0\"\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": [
+ "5002c71f-dc2c-40c7-b675-0d20dcc48624"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12134"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac527c5d-da2a-4c52-b676-bfaebc90ae0c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:ac527c5d-da2a-4c52-b676-bfaebc90ae0c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "452"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "557826b3-2415-4b90-a616-9ad13f994a6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12133"
+ ],
+ "x-ms-correlation-request-id": [
+ "340a2d63-1756-4252-8854-b3352107217a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:340a2d63-1756-4252-8854-b3352107217a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dd64e826-0204-4905-9b56-96ae26473cc4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12132"
+ ],
+ "x-ms-correlation-request-id": [
+ "a44075f3-a38d-405d-9d14-03e74491bead"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:a44075f3-a38d-405d-9d14-03e74491bead"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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",
+ "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\": \"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]",
+ "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": [
+ "602df9a3-c5d0-4dae-9b72-7c0769d23844"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12131"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e9c9b7d-f4ef-4a63-b913-6babe179b42f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:0e9c9b7d-f4ef-4a63-b913-6babe179b42f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3f1ce56f-2733-4be8-ab35-04fc30027e8c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12130"
+ ],
+ "x-ms-correlation-request-id": [
+ "45925143-5415-4ce2-b2fc-eebe012a3c36"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212741Z:45925143-5415-4ce2-b2fc-eebe012a3c36"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:40 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "823428cf-9abd-429d-9b4e-1b52cc0eaf18"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12129"
+ ],
+ "x-ms-correlation-request-id": [
+ "599996bc-ed29-4dc7-a709-b0f87a98e0c3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:599996bc-ed29-4dc7-a709-b0f87a98e0c3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "82e49774-19d3-4c81-91a3-272228e89b8d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12128"
+ ],
+ "x-ms-correlation-request-id": [
+ "3fe2f964-b602-4534-a444-f26c8512017d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:3fe2f964-b602-4534-a444-f26c8512017d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "c412fa9f-2e0f-426c-b99e-bf8b85270a4e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12127"
+ ],
+ "x-ms-correlation-request-id": [
+ "89ed3498-1092-4f10-9022-02ad88e4d6c4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:89ed3498-1092-4f10-9022-02ad88e4d6c4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "5ef70568-c860-43cc-a77a-4d6055c29287"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12126"
+ ],
+ "x-ms-correlation-request-id": [
+ "373ccb7a-08b7-4c1b-b45f-734ac165b0ff"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:373ccb7a-08b7-4c1b-b45f-734ac165b0ff"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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=",
+ "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\": \"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]",
+ "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": [
+ "4937ad6a-f646-4f50-b2e1-20b707577ec2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12125"
+ ],
+ "x-ms-correlation-request-id": [
+ "f99ded95-2004-4b29-b412-eba8de8091f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:f99ded95-2004-4b29-b412-eba8de8091f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "597"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "af5e6ff6-ae02-421e-8ab1-1f82742d3adf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12124"
+ ],
+ "x-ms-correlation-request-id": [
+ "bc56e0a9-4e61-4bff-aca2-847c6051db74"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212742Z:bc56e0a9-4e61-4bff-aca2-847c6051db74"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:41 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",
+ "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/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-linux/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "959e5f5b-5adc-4dc4-a23f-ccb079d0845f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12123"
+ ],
+ "x-ms-correlation-request-id": [
+ "83f1e487-70fc-4f0b-864e-fbc4be80c233"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:83f1e487-70fc-4f0b-864e-fbc4be80c233"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "538"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "21b9368a-99a0-4314-8cfc-e8365d827540"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12122"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f284331-591c-425a-8833-c21047840b9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:2f284331-591c-425a-8833-c21047840b9c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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/thinkboxsoftware/ArtifactTypes/VMImage/Offers/deadline-single-vm/Skus/deadline-single-vm-windows/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b2fc14d7-8891-47c5-8e29-e616c1fc7c77"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12121"
+ ],
+ "x-ms-correlation-request-id": [
+ "070b7e0b-a1e5-4a43-ad42-5153c3d3f9f3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:070b7e0b-a1e5-4a43-ad42-5153c3d3f9f3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "931d760f-e7f4-47c2-a545-54129d72f981"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12120"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffb31194-748d-47f2-beb5-3843db1bf05a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:ffb31194-748d-47f2-beb5-3843db1bf05a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "753"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "70b8b5f4-dbc5-4cbe-819c-8ae3cde55307"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12119"
+ ],
+ "x-ms-correlation-request-id": [
+ "81c5378d-12f0-4814-bddf-d517cb56f8b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:81c5378d-12f0-4814-bddf-d517cb56f8b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "56143021-d4c5-4cae-8600-16fd8511de1b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12118"
+ ],
+ "x-ms-correlation-request-id": [
+ "f0640d24-992b-4ce3-95ac-b791ee488ca5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:f0640d24-992b-4ce3-95ac-b791ee488ca5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk-demonstration/Skus/demonstration_account/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "285"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba164096-b01e-45b3-a705-ce80bff488c6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12117"
+ ],
+ "x-ms-correlation-request-id": [
+ "1828cae4-a538-4d8a-9464-d44d9b9cdbe9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:1828cae4-a538-4d8a-9464-d44d9b9cdbe9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b3680169-f6c3-4a0f-85b7-8b9427fe83f2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12116"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5147b62-0c09-4c1b-85c2-b27af094959b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:d5147b62-0c09-4c1b-85c2-b27af094959b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1119"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7994f0fa-dbb7-4339-8098-82334602e744"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12115"
+ ],
+ "x-ms-correlation-request-id": [
+ "7aea1e15-988d-49cb-8e5a-a37f14408d53"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:7aea1e15-988d-49cb-8e5a-a37f14408d53"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/100_operator_license/Versions/1.0.0\"\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": [
+ "31b524c8-cb16-4cae-97b2-af13b445fe19"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12114"
+ ],
+ "x-ms-correlation-request-id": [
+ "900eb122-4e7e-40c0-9942-48a0aef26bbe"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:900eb122-4e7e-40c0-9942-48a0aef26bbe"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "562"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc9cae50-6f75-44fb-8c52-9a9d344e0576"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12113"
+ ],
+ "x-ms-correlation-request-id": [
+ "52ab30d8-c0d6-45df-ac54-f7934a716ebf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212743Z:52ab30d8-c0d6-45df-ac54-f7934a716ebf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:42 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==",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/10_operator_license/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c8944432-df29-4b20-9ab3-a35ece7fa7a3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12112"
+ ],
+ "x-ms-correlation-request-id": [
+ "c2ba835c-26d4-43ac-8455-c392f830ba19"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:c2ba835c-26d4-43ac-8455-c392f830ba19"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "560"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "dde0a5a1-1035-4935-8509-74df0c73e5c5"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12111"
+ ],
+ "x-ms-correlation-request-id": [
+ "38a18826-145e-4950-ae2f-3fbe0075a3a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:38a18826-145e-4950-ae2f-3fbe0075a3a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/50_operator_license/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "283"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ba882313-c50a-4238-9761-2accfdfd26d1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12110"
+ ],
+ "x-ms-correlation-request-id": [
+ "d60437e4-05d5-44d3-bf38-ed4a0bfc32d7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:d60437e4-05d5-44d3-bf38-ed4a0bfc32d7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "560"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d78c3b6c-6128-46b7-8386-fbb145df1e46"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12109"
+ ],
+ "x-ms-correlation-request-id": [
+ "26cc75f9-0fad-4dd7-b1c1-3a1e88c849b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:26cc75f9-0fad-4dd7-b1c1-3a1e88c849b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk-itsm-software/Skus/5_operator_license/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": [
+ "101f190c-2ddd-45ee-8187-09e47c7cd7e0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12108"
+ ],
+ "x-ms-correlation-request-id": [
+ "5e6a5d83-52d4-4650-b02a-eada09499276"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:5e6a5d83-52d4-4650-b02a-eada09499276"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b9a16039-2e22-48a6-b620-cf78f0ffa162"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12107"
+ ],
+ "x-ms-correlation-request-id": [
+ "f4e8d798-e7f6-41d6-afa4-4c1257394431"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:f4e8d798-e7f6-41d6-afa4-4c1257394431"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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=",
+ "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\": \"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]",
+ "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": [
+ "c2e44748-933d-4ff9-9279-232ca680709a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12106"
+ ],
+ "x-ms-correlation-request-id": [
+ "bdc9bf33-3791-4edc-8d95-9921a7648a06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:bdc9bf33-3791-4edc-8d95-9921a7648a06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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/topdesk/ArtifactTypes/VMImage/Offers/topdesk_byol/Skus/topdesk_service_management_byol/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "286"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "671a0708-d3a5-4a49-8122-1e2cb400db49"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12105"
+ ],
+ "x-ms-correlation-request-id": [
+ "624cfc35-4492-4210-9b35-607d337b438c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:624cfc35-4492-4210-9b35-607d337b438c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "566"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a22ff221-3f30-4a0e-b4c4-c9103b5bd677"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12104"
+ ],
+ "x-ms-correlation-request-id": [
+ "03e843e8-65d7-4275-80dc-324688ade968"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:03e843e8-65d7-4275-80dc-324688ade968"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7efc77e7-6fd5-4355-b344-0353ac428d45"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12103"
+ ],
+ "x-ms-correlation-request-id": [
+ "9a0d15b9-d5bc-4d0e-ac0a-c88a80bc61e7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:9a0d15b9-d5bc-4d0e-ac0a-c88a80bc61e7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "292"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "595ddea6-1d2c-4ca9-aa02-8539feec2121"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12102"
+ ],
+ "x-ms-correlation-request-id": [
+ "d3c5a87d-54ab-450e-930f-81ea645d3982"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212744Z:d3c5a87d-54ab-450e-930f-81ea645d3982"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:44 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",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "288"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d108710-5b61-44ff-9e80-cc08df514fb2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12101"
+ ],
+ "x-ms-correlation-request-id": [
+ "ed23005a-acf3-4a52-bf57-f7b1bfdd0943"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:ed23005a-acf3-4a52-bf57-f7b1bfdd0943"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "526"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "00835f0b-05da-4719-8741-14ea87a2b311"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12100"
+ ],
+ "x-ms-correlation-request-id": [
+ "92afbcbf-2ba5-4e0c-a834-319979bc42b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:92afbcbf-2ba5-4e0c-a834-319979bc42b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "240"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6d78d68d-14b7-40ae-bf2f-e32a324fb174"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12099"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9a07731-13d6-4602-a1c8-9a3dd3a4365e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:b9a07731-13d6-4602-a1c8-9a3dd3a4365e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "256"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "daf08891-bab6-494e-b1eb-3afc9707dafd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12098"
+ ],
+ "x-ms-correlation-request-id": [
+ "b496051a-003e-4dfc-b28f-d0d5168b4174"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:b496051a-003e-4dfc-b28f-d0d5168b4174"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "85cdce9e-2c07-41bf-8cf9-4b0588235638"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12097"
+ ],
+ "x-ms-correlation-request-id": [
+ "6b6a6bb6-68d5-4a2f-b80b-ba698e3aec75"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:6b6a6bb6-68d5-4a2f-b80b-ba698e3aec75"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "526"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e5454206-c455-4d0b-9a73-b4da045abd07"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12096"
+ ],
+ "x-ms-correlation-request-id": [
+ "aa5973ad-1244-4c77-bd9d-32c42267b31e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:aa5973ad-1244-4c77-bd9d-32c42267b31e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "535"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "826e4b7c-def3-4157-b9c4-786e286e49f9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12095"
+ ],
+ "x-ms-correlation-request-id": [
+ "9c697950-1820-4ba9-aa99-7e45530ae0af"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:9c697950-1820-4ba9-aa99-7e45530ae0af"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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",
+ "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\": \"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]",
+ "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": [
+ "a135eb2b-cd5c-4b88-9b0d-fe0b2c334572"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12094"
+ ],
+ "x-ms-correlation-request-id": [
+ "97b7a7b4-9a87-4563-a255-6a1fb60888c6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:97b7a7b4-9a87-4563-a255-6a1fb60888c6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9b8c0e01-4a9a-43fe-ada8-c4409f80455f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12093"
+ ],
+ "x-ms-correlation-request-id": [
+ "17ebb2ee-e0e9-44f4-b1af-15e1a1a92fa6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:17ebb2ee-e0e9-44f4-b1af-15e1a1a92fa6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "524"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fcf5518-a420-47e7-9f44-d90deb8811de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12092"
+ ],
+ "x-ms-correlation-request-id": [
+ "5880e43e-5aad-4c82-9167-a2615d2eb3de"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212745Z:5880e43e-5aad-4c82-9167-a2615d2eb3de"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "553"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "614a67ca-fd19-4405-8073-ef392c6c443f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12091"
+ ],
+ "x-ms-correlation-request-id": [
+ "9624a467-7e7e-4bda-998f-5228b2fb46bc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:9624a467-7e7e-4bda-998f-5228b2fb46bc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:45 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "02219f9b-b981-47a2-a327-a05867a2e50f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12090"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a524925-aca9-453f-bd1e-509f98cb4d7f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:5a524925-aca9-453f-bd1e-509f98cb4d7f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33b7a646-88b1-4972-88ed-f77caee1a0e7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12089"
+ ],
+ "x-ms-correlation-request-id": [
+ "7f6e2230-bc22-4504-9d4f-28c404e719e3"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:7f6e2230-bc22-4504-9d4f-28c404e719e3"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "289"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9ae9e3cc-3afc-49e9-a90d-28b4fb64fe2c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12088"
+ ],
+ "x-ms-correlation-request-id": [
+ "f790d466-cafd-4b7f-aabb-a442ae1dfcb6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:f790d466-cafd-4b7f-aabb-a442ae1dfcb6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1a6954d4-4279-457e-99bd-1e32982cbbf3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12087"
+ ],
+ "x-ms-correlation-request-id": [
+ "7710070a-faf5-43ca-96af-496970b5762f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:7710070a-faf5-43ca-96af-496970b5762f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "19bbb712-01d0-4b06-93d0-bd12fb3a101f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12086"
+ ],
+ "x-ms-correlation-request-id": [
+ "d542e867-9118-4c4d-a225-af78aa62525e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:d542e867-9118-4c4d-a225-af78aa62525e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "7592cbf4-9ff3-4d08-adbf-974fa2a584ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12085"
+ ],
+ "x-ms-correlation-request-id": [
+ "234613e0-053e-4e28-ae73-3f9f8f386cc8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:234613e0-053e-4e28-ae73-3f9f8f386cc8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "3b22e0a0-e452-487f-a856-9ca846db7b9f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12084"
+ ],
+ "x-ms-correlation-request-id": [
+ "fcba6e47-abc3-4ddd-bc0b-79decb3abcab"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:fcba6e47-abc3-4ddd-bc0b-79decb3abcab"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "0439cb1b-d8d1-4f32-841d-8ebb4b08d637"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12083"
+ ],
+ "x-ms-correlation-request-id": [
+ "c99f600c-db4a-4a23-89b3-9caf0d3df5a2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:c99f600c-db4a-4a23-89b3-9caf0d3df5a2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "272"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59478c4b-c537-47e5-84f4-85186c5c9137"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12082"
+ ],
+ "x-ms-correlation-request-id": [
+ "bec66fc6-c128-448b-b509-11843cbf65bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212746Z:bec66fc6-c128-448b-b509-11843cbf65bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ca76ffa5-5cfd-422a-8ffc-d02d3df908a4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12081"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f79dd38-0087-4c72-a960-61fe376eecd8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:4f79dd38-0087-4c72-a960-61fe376eecd8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:46 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==",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c779a5d1-7bc0-4579-8b9f-0b2e0bf86cbc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12080"
+ ],
+ "x-ms-correlation-request-id": [
+ "d07561fc-398c-4c6f-9c62-d0e38a72885d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:d07561fc-398c-4c6f-9c62-d0e38a72885d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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==",
+ "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\": \"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}",
+ "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": [
+ "19e64a90-692b-46b0-ba85-efdd5f2608de"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12079"
+ ],
+ "x-ms-correlation-request-id": [
+ "99eab715-05de-45a4-aa50-49d66775ff80"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:99eab715-05de-45a4-aa50-49d66775ff80"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "aa763bae-f9dd-4d79-906f-b00ca2079747"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12078"
+ ],
+ "x-ms-correlation-request-id": [
+ "198f1100-477a-4dc9-8383-3c7fdafe1c52"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:198f1100-477a-4dc9-8383-3c7fdafe1c52"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "09ce8ef6-8f3f-4046-b5d3-c386db868c8f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12077"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d3a9a2b-f107-45f3-ab12-3f4017529ef5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:0d3a9a2b-f107-45f3-ab12-3f4017529ef5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0dd47cbd-02fb-4043-b185-2f4d144759b6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12076"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a2b8698-55e5-4f28-852e-ac7d102f03c5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:5a2b8698-55e5-4f28-852e-ac7d102f03c5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "451b6311-7bb6-4b32-a4d4-ec2128079a83"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12075"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ba92401-b628-438e-9eeb-cd38924fb176"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:1ba92401-b628-438e-9eeb-cd38924fb176"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "273"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "abbe0646-d5d1-4066-8173-7391a9f0e607"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12074"
+ ],
+ "x-ms-correlation-request-id": [
+ "9b4a15f8-4af3-4e70-a5a2-0b6ba22dd612"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:9b4a15f8-4af3-4e70-a5a2-0b6ba22dd612"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "263"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b71f83dd-7540-46d6-ab9c-e7bdac16d4c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12073"
+ ],
+ "x-ms-correlation-request-id": [
+ "1c887955-4991-4e79-9b4f-ad6480fc4776"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:1c887955-4991-4e79-9b4f-ad6480fc4776"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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",
+ "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/usp/ArtifactTypes/VMImage/Offers/unified-streaming-vod-standard/Skus/usp-vod/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a373e48b-b1f0-49f5-b81d-e27414732628"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12072"
+ ],
+ "x-ms-correlation-request-id": [
+ "f5c574a0-de0b-46fc-ae67-24a2dab141e2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212747Z:f5c574a0-de0b-46fc-ae67-24a2dab141e2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "502"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "925fcc4a-b811-42e7-99af-607bdf29d263"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12071"
+ ],
+ "x-ms-correlation-request-id": [
+ "b4a7002a-7ba7-4a4f-a1e4-04f6f04996f4"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:b4a7002a-7ba7-4a4f-a1e4-04f6f04996f4"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:47 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "249"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "96bcdf58-f394-4525-bd25-27656eb7fd13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12070"
+ ],
+ "x-ms-correlation-request-id": [
+ "088c9aac-ae38-49aa-bfd2-fecde57c70fc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:088c9aac-ae38-49aa-bfd2-fecde57c70fc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3e6e2e42-b0ee-4273-90ac-cfe7d064be0f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12069"
+ ],
+ "x-ms-correlation-request-id": [
+ "77327ca6-8668-4b49-bf5c-6608675333cf"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:77327ca6-8668-4b49-bf5c-6608675333cf"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "269"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "10252a83-3e43-4c4b-8c5e-be711c19e04f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12068"
+ ],
+ "x-ms-correlation-request-id": [
+ "945e0e34-2d72-40e3-949a-e93744961c62"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:945e0e34-2d72-40e3-949a-e93744961c62"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "490"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e89d9bab-1288-4f1f-9509-62362fe68405"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12067"
+ ],
+ "x-ms-correlation-request-id": [
+ "9e5a8205-7e7f-46c4-9027-9457c472491f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:9e5a8205-7e7f-46c4-9027-9457c472491f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4694366a-00f4-46a9-8308-dedc31ca22fd"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12066"
+ ],
+ "x-ms-correlation-request-id": [
+ "654ef97d-9560-4fc0-88df-fbd755a22406"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:654ef97d-9560-4fc0-88df-fbd755a22406"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "547"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4d3e5e27-d1fd-4892-9149-a43af22a4624"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12065"
+ ],
+ "x-ms-correlation-request-id": [
+ "a859191e-fe29-4485-92f2-5cdc9d5e6713"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:a859191e-fe29-4485-92f2-5cdc9d5e6713"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "290"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4fc1c431-dee4-44c1-a323-53f3ae4b587f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12064"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b7d8fe-b184-43d3-b173-c3bbc1069c2e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:79b7d8fe-b184-43d3-b173-c3bbc1069c2e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "522"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e5016097-aaba-4159-85df-af5129b89dc4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12063"
+ ],
+ "x-ms-correlation-request-id": [
+ "27752dd4-5393-48ee-af43-68aa96535911"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:27752dd4-5393-48ee-af43-68aa96535911"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d9b8505b-1fd2-4fb4-88d7-d1293af4859f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12062"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6dbb174-0ca1-40dd-bce8-87e97cb642b1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212748Z:b6dbb174-0ca1-40dd-bce8-87e97cb642b1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "530"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "33560566-6db3-4134-90d3-0d66bab3f30b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12061"
+ ],
+ "x-ms-correlation-request-id": [
+ "3047bec3-7af0-462d-8254-865a7450d497"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:3047bec3-7af0-462d-8254-865a7450d497"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:48 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "307"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed5c454d-7031-4405-9724-f0849a422ec6"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12060"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c2a85f8-7ddb-4809-a70a-a4d87f98390d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:7c2a85f8-7ddb-4809-a70a-a4d87f98390d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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=",
+ "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\": \"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]",
+ "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": [
+ "a02f5a61-e1c7-4635-9a26-7d641eb70c75"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12059"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb44a1f2-3b0f-4719-a4b8-6ddc66a48f06"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:eb44a1f2-3b0f-4719-a4b8-6ddc66a48f06"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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==",
+ "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\": \"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]",
+ "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": [
+ "f2e7eca5-58d7-4c99-8e0b-beb7e5400736"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12058"
+ ],
+ "x-ms-correlation-request-id": [
+ "d05d4eae-dd70-46d9-8ac5-576ffa7023c7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:d05d4eae-dd70-46d9-8ac5-576ffa7023c7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "574"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de98c848-a135-4b51-a0ed-beaff7042103"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12057"
+ ],
+ "x-ms-correlation-request-id": [
+ "91478496-8c0e-4755-b117-a222c45a7a66"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:91478496-8c0e-4755-b117-a222c45a7a66"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "505"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8380d99a-cc60-454d-8797-e837011493a8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12056"
+ ],
+ "x-ms-correlation-request-id": [
+ "10bc41a6-de0c-41df-9758-a6eb0cf127f8"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:10bc41a6-de0c-41df-9758-a6eb0cf127f8"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "252"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "942397b0-2ca2-4c01-b3a0-de112757caf8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12055"
+ ],
+ "x-ms-correlation-request-id": [
+ "62e8dbb3-f7d1-4057-839c-cf38bd00f014"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:62e8dbb3-f7d1-4057-839c-cf38bd00f014"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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",
+ "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.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]",
+ "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": [
+ "450c6933-6bbb-47ac-ae35-6911c62893ea"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12054"
+ ],
+ "x-ms-correlation-request-id": [
+ "3088a3d3-a008-4fd2-b81e-54da28b65528"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212749Z:3088a3d3-a008-4fd2-b81e-54da28b65528"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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",
+ "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\": \"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}",
+ "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": [
+ "a4698b1b-aae8-4d81-93e3-7af137be9968"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12053"
+ ],
+ "x-ms-correlation-request-id": [
+ "79b256ee-689b-4d3c-ad5e-4132636c7d4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:79b256ee-689b-4d3c-ad5e-4132636c7d4d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:49 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==",
+ "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\": \"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]",
+ "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": [
+ "fd546b8b-d082-4a51-a385-c4cc19af5354"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12052"
+ ],
+ "x-ms-correlation-request-id": [
+ "0e6af69a-6ff5-46fd-a5c8-944667fd20e7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:0e6af69a-6ff5-46fd-a5c8-944667fd20e7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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==",
+ "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/virtualworks/ArtifactTypes/VMImage/Offers/viaworks-online-2_5-beta/Skus/viaworks/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5132b55d-6732-40b2-a074-388150c4b6c9"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12051"
+ ],
+ "x-ms-correlation-request-id": [
+ "c0927c59-72a5-48c8-81cc-5f4fa82e683b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:c0927c59-72a5-48c8-81cc-5f4fa82e683b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7e557029-2d4b-4e54-ab2b-19a620dde7af"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12050"
+ ],
+ "x-ms-correlation-request-id": [
+ "587d4d94-96ef-4b24-b2e4-fac33c70efef"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:587d4d94-96ef-4b24-b2e4-fac33c70efef"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "509"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c5c2d53b-8930-4ae4-b28b-4aa5f5f23bbe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12049"
+ ],
+ "x-ms-correlation-request-id": [
+ "411152b9-bd97-427c-a5de-ec1d551f9a69"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:411152b9-bd97-427c-a5de-ec1d551f9a69"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "bf42698e-5079-4c9d-8a48-d90bb4aed4fe"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12048"
+ ],
+ "x-ms-correlation-request-id": [
+ "80a80d52-15a4-489f-813a-fd0a1166e97c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:80a80d52-15a4-489f-813a-fd0a1166e97c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ed6d192c-7fe4-41d1-8a83-69205044c7be"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12047"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b2e6dc1-c496-4d4f-ba0f-541716df69a9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:5b2e6dc1-c496-4d4f-ba0f-541716df69a9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "56407a6f-0079-4da3-b2d4-becfaf93aa80"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12046"
+ ],
+ "x-ms-correlation-request-id": [
+ "4ec3ab03-0afc-4b5e-abaa-c77d3d36c6f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:4ec3ab03-0afc-4b5e-abaa-c77d3d36c6f9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "301"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "038f1cba-d6fc-46f1-a611-1607ab282519"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12045"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e91cbcb-6f9b-41b8-9f2c-d3a266f43d6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:6e91cbcb-6f9b-41b8-9f2c-d3a266f43d6f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "554"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "2eddbad8-5b83-4618-b1dd-1c5ae2908554"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12044"
+ ],
+ "x-ms-correlation-request-id": [
+ "1ff480fc-21f7-4dc6-9f27-92c77fc6ee26"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212750Z:1ff480fc-21f7-4dc6-9f27-92c77fc6ee26"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "303"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "de60009f-bcf6-4d08-9249-c952ea9d4f00"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12043"
+ ],
+ "x-ms-correlation-request-id": [
+ "01b36a0a-b98d-4a78-98f2-25fd4a7d4ad6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:01b36a0a-b98d-4a78-98f2-25fd4a7d4ad6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f10374ef-c623-404b-bd28-a21ed012109c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12042"
+ ],
+ "x-ms-correlation-request-id": [
+ "51f75cf6-33ad-4c1f-a03a-e43aa11fae9d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:51f75cf6-33ad-4c1f-a03a-e43aa11fae9d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:50 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",
+ "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\": \"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]",
+ "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": [
+ "6dc5ca7e-21d9-4768-b0dc-9ce421441619"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12041"
+ ],
+ "x-ms-correlation-request-id": [
+ "379c01c5-dadc-4980-a802-74c2253dc222"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:379c01c5-dadc-4980-a802-74c2253dc222"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "534"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a262da97-488d-4a7f-b46c-773a3c0ec1c8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12040"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf60eb45-b929-46f7-ab12-0c3fbb0cbb67"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:bf60eb45-b929-46f7-ab12-0c3fbb0cbb67"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "914"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f0ba4dce-5afa-4dcc-831d-d8061bfdedb8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12039"
+ ],
+ "x-ms-correlation-request-id": [
+ "68369b56-ed9e-41fe-adcd-50044d13bd94"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:68369b56-ed9e-41fe-adcd-50044d13bd94"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6b0dc20f-c542-4138-b242-67f11a60e442"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12038"
+ ],
+ "x-ms-correlation-request-id": [
+ "c4771ce1-acd2-4854-a3d4-25b668bf25f1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:c4771ce1-acd2-4854-a3d4-25b668bf25f1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a0d6a82f-99ba-4b60-b6ed-a1aea7d33290"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12037"
+ ],
+ "x-ms-correlation-request-id": [
+ "048184c1-0d7b-4deb-a87a-ffc949076215"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:048184c1-0d7b-4deb-a87a-ffc949076215"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "296"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "91b536bc-b28c-473b-b884-04eca353097d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12036"
+ ],
+ "x-ms-correlation-request-id": [
+ "70ccd65f-4c12-4314-97ce-1bfe1a307f6f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:70ccd65f-4c12-4314-97ce-1bfe1a307f6f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "544"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35cbc49a-e160-423b-946a-d4dea7320d65"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12035"
+ ],
+ "x-ms-correlation-request-id": [
+ "d69d7526-7c69-4136-bd07-9e4a3ad25dee"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:d69d7526-7c69-4136-bd07-9e4a3ad25dee"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "298"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "93f64fb6-6caa-446f-bfca-8bcbc320c87f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12034"
+ ],
+ "x-ms-correlation-request-id": [
+ "601782c4-c79f-4176-b3c2-5d7449766176"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:601782c4-c79f-4176-b3c2-5d7449766176"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "548"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b39a6ce3-a710-4d05-b0a5-1295acae527c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12033"
+ ],
+ "x-ms-correlation-request-id": [
+ "907312a1-17d4-4e2e-8e67-a9bd6e81a0bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212751Z:907312a1-17d4-4e2e-8e67-a9bd6e81a0bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "c3ee7080-4bcd-4835-a745-614c5e761f8d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12032"
+ ],
+ "x-ms-correlation-request-id": [
+ "7607b163-253f-4e84-a1c0-a08e9741c11d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:7607b163-253f-4e84-a1c0-a08e9741c11d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:51 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "2d2f3dbc-4be7-4a2f-9023-15504ae4cd3e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12031"
+ ],
+ "x-ms-correlation-request-id": [
+ "451b75da-716d-4af3-a776-63965049d7d6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:451b75da-716d-4af3-a776-63965049d7d6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "4ee99a48-3d2c-4bd3-a7e9-2dc7790c7fc7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12030"
+ ],
+ "x-ms-correlation-request-id": [
+ "56c8e9b2-4fbf-4010-98d4-b13721a36a13"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:56c8e9b2-4fbf-4010-98d4-b13721a36a13"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "227"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5bb67d0c-bb50-41ae-962a-7932843bfe11"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12029"
+ ],
+ "x-ms-correlation-request-id": [
+ "05228263-c93e-45cc-89ca-1184577cf100"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:05228263-c93e-45cc-89ca-1184577cf100"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "509"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "a541664b-a87c-4032-9c7d-c02c3cb666c4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12028"
+ ],
+ "x-ms-correlation-request-id": [
+ "d00cf9cc-4189-41b0-9a92-46a58589afce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:d00cf9cc-4189-41b0-9a92-46a58589afce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "261"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cd06a13a-2610-44d4-ad81-0f0aed40f024"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12027"
+ ],
+ "x-ms-correlation-request-id": [
+ "830e7414-c1ff-4b42-ad55-888dac5919bd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:830e7414-c1ff-4b42-ad55-888dac5919bd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "470"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "958dcb76-eb1d-48c7-92a1-7fd80e886321"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12026"
+ ],
+ "x-ms-correlation-request-id": [
+ "a4bde699-f3d5-40c9-b840-1448bf445b3b"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:a4bde699-f3d5-40c9-b840-1448bf445b3b"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "265"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "01266e94-497e-40f0-bcfb-28273b96ecde"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12025"
+ ],
+ "x-ms-correlation-request-id": [
+ "1813b252-4251-49b5-959f-7ecb364e9a4d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212752Z:1813b252-4251-49b5-959f-7ecb364e9a4d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d1d55a4e-c1f8-4091-bec3-f4c3a2e3dffb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12024"
+ ],
+ "x-ms-correlation-request-id": [
+ "1d6aa4b9-b5e5-4931-bd6d-659d2f0c7a5d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:1d6aa4b9-b5e5-4931-bd6d-659d2f0c7a5d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "245"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4b641bd9-ee9c-43a9-ad95-b33e11d14e0e"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12023"
+ ],
+ "x-ms-correlation-request-id": [
+ "9da13a2a-d973-42a0-ada1-9e58d4858144"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:9da13a2a-d973-42a0-ada1-9e58d4858144"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:52 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==",
+ "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\": \"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]",
+ "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": [
+ "17b07150-6b47-4120-bab8-4fc488950101"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12022"
+ ],
+ "x-ms-correlation-request-id": [
+ "cd829bcd-2b68-401d-9b54-1657e4aee731"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:cd829bcd-2b68-401d-9b54-1657e4aee731"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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",
+ "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\": \"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]",
+ "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": [
+ "2e4df23d-2e0e-4dfb-827e-d56e9dd8c59c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12021"
+ ],
+ "x-ms-correlation-request-id": [
+ "77d35794-e8f1-4a8c-9ad9-04360c572f76"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:77d35794-e8f1-4a8c-9ad9-04360c572f76"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "478"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "afe2b48d-6249-441b-bd6c-41de8970c3f0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12020"
+ ],
+ "x-ms-correlation-request-id": [
+ "bd36b0e5-9ace-4bcf-b9ed-489d86b9e49d"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:bd36b0e5-9ace-4bcf-b9ed-489d86b9e49d"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "280"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "57ed031c-9837-4c3a-86b4-8aab2669bb6a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12019"
+ ],
+ "x-ms-correlation-request-id": [
+ "083db872-d03e-4b0b-87c1-e0547a82ea73"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:083db872-d03e-4b0b-87c1-e0547a82ea73"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "341"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1404c321-5d3f-46b3-bbc1-4f27f7e381b2"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12018"
+ ],
+ "x-ms-correlation-request-id": [
+ "46949f6e-e629-4cce-9f4f-1eba4ccb8acc"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:46949f6e-e629-4cce-9f4f-1eba4ccb8acc"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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=",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "320"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "98a41b6e-b6c6-47bd-a883-4fc9b8e12adf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12017"
+ ],
+ "x-ms-correlation-request-id": [
+ "cae8178c-271e-421a-bd4f-01410652569e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:cae8178c-271e-421a-bd4f-01410652569e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "592"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "46ac15e8-d7c5-4ca9-a137-07767ffb9e26"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12016"
+ ],
+ "x-ms-correlation-request-id": [
+ "465ecf93-98d7-4c55-b5fb-ecbdda305ba7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:465ecf93-98d7-4c55-b5fb-ecbdda305ba7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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": [
+ "0265fbc2-deef-4e0a-9d4e-c3f6dbb615ec"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12015"
+ ],
+ "x-ms-correlation-request-id": [
+ "8f0c1193-a869-488c-a1ee-2dd76abac0f9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212753Z:8f0c1193-a869-488c-a1ee-2dd76abac0f9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "782"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1366db8a-2199-46fe-87ac-f6da7d53cb1c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12014"
+ ],
+ "x-ms-correlation-request-id": [
+ "53b364f4-ac35-4d22-bf4a-20c3356bb258"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:53b364f4-ac35-4d22-bf4a-20c3356bb258"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0208bb8e-09dc-4d07-8eb2-bac817a4ef26"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12013"
+ ],
+ "x-ms-correlation-request-id": [
+ "0471de94-d576-42fc-866b-fa9361243202"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:0471de94-d576-42fc-866b-fa9361243202"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:53 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=",
+ "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/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-centos/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5c897f87-77b8-4ac9-80b8-7775859a5d67"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12012"
+ ],
+ "x-ms-correlation-request-id": [
+ "0d13b7a3-1f98-4df8-b4cb-e30af3975003"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:0d13b7a3-1f98-4df8-b4cb-e30af3975003"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "47aa72e3-342c-4df2-9234-9d91ee5c59b7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12011"
+ ],
+ "x-ms-correlation-request-id": [
+ "1a83051d-6004-40d4-a1cf-bf0aa94f0607"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:1a83051d-6004-40d4-a1cf-bf0aa94f0607"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "276"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "29cb06d8-2c5a-4bac-9e91-7a347d4f0b85"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12010"
+ ],
+ "x-ms-correlation-request-id": [
+ "00b6ecf4-6724-459d-a999-58a5318897c0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:00b6ecf4-6724-459d-a999-58a5318897c0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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=",
+ "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/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-ubuntu/Skus/nimble-streamer/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "44c18c61-580f-46f8-aa00-3c4883341c3a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12009"
+ ],
+ "x-ms-correlation-request-id": [
+ "00b99dcf-58e7-47d0-8fe7-1c6ad98e964e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:00b99dcf-58e7-47d0-8fe7-1c6ad98e964e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "512"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "6ab339ae-e4a4-450d-b6e3-1e2664f98535"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12008"
+ ],
+ "x-ms-correlation-request-id": [
+ "cdbda613-f3fb-422f-9360-afad3ba1e8ce"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:cdbda613-f3fb-422f-9360-afad3ba1e8ce"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "8b549b54-28e7-4f14-9674-1838a6853a86"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12007"
+ ],
+ "x-ms-correlation-request-id": [
+ "d439be5d-73f2-46cb-8cff-4f0d65b0a465"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:d439be5d-73f2-46cb-8cff-4f0d65b0a465"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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",
+ "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/wmspanel/ArtifactTypes/VMImage/Offers/nimble-streamer-windows/Skus/nimble-streamer/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": [
+ "14f4f4c5-12df-4f55-baba-96bdd83d6a10"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12006"
+ ],
+ "x-ms-correlation-request-id": [
+ "1b79e02f-b222-46e8-b86e-3e371a74a6c9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212754Z:1b79e02f-b222-46e8-b86e-3e371a74a6c9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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",
+ "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\": \"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}",
+ "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": [
+ "50134467-79b2-411d-81af-0f2434f842ab"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12005"
+ ],
+ "x-ms-correlation-request-id": [
+ "07c5f787-c81b-4cb8-b3fa-0795511d0666"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:07c5f787-c81b-4cb8-b3fa-0795511d0666"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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",
+ "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\": \"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]",
+ "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": [
+ "8800f205-2e30-4fed-ba21-bdfe252da0f8"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12004"
+ ],
+ "x-ms-correlation-request-id": [
+ "5da29cd1-13dc-4b7e-9c9f-eca4e50857a6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:5da29cd1-13dc-4b7e-9c9f-eca4e50857a6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "300"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "180d9796-7516-470d-9313-27f065f83ab4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12003"
+ ],
+ "x-ms-correlation-request-id": [
+ "2acfd51e-b782-4380-be09-bc2c8b1f486c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:2acfd51e-b782-4380-be09-bc2c8b1f486c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:54 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "305"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "59e6b792-66d1-41a5-a671-ac5da81d9e1a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12002"
+ ],
+ "x-ms-correlation-request-id": [
+ "6ef58d26-3d82-4463-b923-1257ba214b05"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:6ef58d26-3d82-4463-b923-1257ba214b05"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "558"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "9e60bb16-891e-4580-a824-0379639793a3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12001"
+ ],
+ "x-ms-correlation-request-id": [
+ "3565690e-68d0-42ef-bbb9-f2600fb55ec7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:3565690e-68d0-42ef-bbb9-f2600fb55ec7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "255"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f6d2912-4f1a-4da2-9799-2f40b28b9f6b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "12000"
+ ],
+ "x-ms-correlation-request-id": [
+ "f72a9fd1-bc5e-4f2b-9eaa-b749a02dc0b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:f72a9fd1-bc5e-4f2b-9eaa-b749a02dc0b9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "1091"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "ebcf79e8-859e-4be2-92b0-fb903bd566ae"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-correlation-request-id": [
+ "342b9925-450d-4085-8005-4fbd5bf65fdb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:342b9925-450d-4085-8005-4fbd5bf65fdb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "275"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5011ead5-b14a-4c20-860f-6b7cb4519989"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "d6ba2ef7-d8c5-4947-9c74-43b798145ff1"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:d6ba2ef7-d8c5-4947-9c74-43b798145ff1"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "500"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5121b7be-51fe-42b6-bea9-24f69f48258d"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-correlation-request-id": [
+ "cbe085e8-2cd5-4af1-b686-2405ace4e9b9"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:cbe085e8-2cd5-4af1-b686-2405ace4e9b9"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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",
+ "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\": \"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]",
+ "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": [
+ "ddf642c3-4d1b-4f7a-b002-c3e3d0e61672"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-correlation-request-id": [
+ "ac32120a-76a8-4cdd-95ad-d10de62b057e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212755Z:ac32120a-76a8-4cdd-95ad-d10de62b057e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "7146165d-a82d-4e2f-8012-bde05bc87209"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "bed5b608-17eb-414f-a3a0-6be363c67318"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:bed5b608-17eb-414f-a3a0-6be363c67318"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "277"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "b0dce249-2f87-4b24-a665-9790bebef5ca"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-correlation-request-id": [
+ "d1072344-1b52-4ed0-bb27-1dcd701508ca"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:d1072344-1b52-4ed0-bb27-1dcd701508ca"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "506"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "1604530f-a418-4bc8-9051-33318a191dcb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-correlation-request-id": [
+ "769d58d1-b728-42e6-82fd-82657b1b4a9e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:769d58d1-b728-42e6-82fd-82657b1b4a9e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:55 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "281"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "f38a2423-33b7-499a-be3e-2a5af2a2af4f"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-correlation-request-id": [
+ "d2bddb8e-dc61-45e9-8016-599156b9c1aa"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:d2bddb8e-dc61-45e9-8016-599156b9c1aa"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "514"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4f65685b-842f-414b-984d-342297cea0fc"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-correlation-request-id": [
+ "d4c643b0-4375-46cc-b330-3b55199b7f22"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:d4c643b0-4375-46cc-b330-3b55199b7f22"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "257"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "fbf000c7-5f2f-486a-a071-6910ba647174"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-correlation-request-id": [
+ "2d2bffed-0494-494f-9e00-011239d48750"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:2d2bffed-0494-494f-9e00-011239d48750"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c9a4c714-9519-4475-adae-c46c27e1dfa3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-correlation-request-id": [
+ "88dbf37d-15a7-40fe-89ae-3dacf2b7bf54"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:88dbf37d-15a7-40fe-89ae-3dacf2b7bf54"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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",
+ "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\": \"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]",
+ "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": [
+ "f60e8d61-21fe-4706-a267-e6655d46f9fa"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-correlation-request-id": [
+ "f3be2d2c-2c36-4876-9274-8c6ad8cb0ba2"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:f3be2d2c-2c36-4876-9274-8c6ad8cb0ba2"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "508"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e2e0edd5-0c58-4007-b9eb-0e84b65b6835"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-correlation-request-id": [
+ "3f4adb2a-167d-47d4-8d6a-f74d037c3f9c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:3f4adb2a-167d-47d4-8d6a-f74d037c3f9c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "238"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "715e793f-29d5-41f6-bffb-023754ba37cf"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-correlation-request-id": [
+ "f1478535-e493-4eeb-86be-36929157e580"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212756Z:f1478535-e493-4eeb-86be-36929157e580"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "20835419-529b-407c-8302-c1a59ee38ab7"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-correlation-request-id": [
+ "a5b25a91-9b66-42da-a87d-03ea11e0e38a"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:a5b25a91-9b66-42da-a87d-03ea11e0e38a"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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==",
+ "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/xfinityinc/ArtifactTypes/VMImage/Offers/d3view-v5/Skus/d3view-v5-hosted/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": [
+ "36472f50-2ca1-433b-ab4e-6cb0fa9d5428"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-correlation-request-id": [
+ "40a1917b-d96b-4cfc-9489-dfefd44571b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:40a1917b-d96b-4cfc-9489-dfefd44571b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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==",
+ "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\": \"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}",
+ "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": [
+ "b1f89ca6-dde7-4ad8-8ae7-b1cf9beb77a3"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-correlation-request-id": [
+ "cc6c4000-ce76-4232-8b84-128aeeb32c37"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:cc6c4000-ce76-4232-8b84-128aeeb32c37"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:56 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "247"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5fe773d6-b81a-417e-9714-15bb4d1c0f93"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-correlation-request-id": [
+ "3cbccfcf-76fc-4e88-81f0-2ee9fe58e834"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:3cbccfcf-76fc-4e88-81f0-2ee9fe58e834"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "cc2219d6-d68d-40db-8d20-4b4df01bf8e4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-correlation-request-id": [
+ "78d00a70-468a-4d13-8b84-fe52a131b745"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:78d00a70-468a-4d13-8b84-fe52a131b745"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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=",
+ "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/xmpro/ArtifactTypes/VMImage/Offers/xmpro-evaluation/Skus/bpm/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "260"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "0f25907b-9403-4f80-a8fa-f31d565a9ffb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-correlation-request-id": [
+ "406d775d-7655-4121-86e2-74426bfbd7b6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:406d775d-7655-4121-86e2-74426bfbd7b6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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=",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "472"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "61645d01-72ee-4ab1-ae15-e3fd011e8d13"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-correlation-request-id": [
+ "f429f947-3ab9-430c-b738-50a1f3bd5124"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:f429f947-3ab9-430c-b738-50a1f3bd5124"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "226"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "d737434e-8228-4fa0-b180-c244f96ecb9a"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-correlation-request-id": [
+ "318dbc55-4892-4a5b-85b6-d744df2a9195"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:318dbc55-4892-4a5b-85b6-d744df2a9195"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "249"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "c1de97f7-f504-41ee-a886-1e0f457475b0"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-correlation-request-id": [
+ "cf1380a3-a081-42a4-8ecd-47ca1037034c"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:cf1380a3-a081-42a4-8ecd-47ca1037034c"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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==",
+ "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.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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "259"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "4c4e873e-d0c8-4f49-b016-5fd8e4d8f315"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c94a53f-984d-4787-958b-877153eb97cd"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212757Z:4c94a53f-984d-4787-958b-877153eb97cd"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "468"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "989a7098-281b-471e-aabb-e5eaf3943a45"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-correlation-request-id": [
+ "af6754e4-7863-4dac-a97a-6c27f3e90e82"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:af6754e4-7863-4dac-a97a-6c27f3e90e82"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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==",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "267"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "619a0e61-8f1d-4a0e-b6d0-425ecf7e196b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-correlation-request-id": [
+ "d346184e-093e-495e-b10f-2b884a2c147e"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:d346184e-093e-495e-b10f-2b884a2c147e"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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==",
+ "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\": \"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]",
+ "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": [
+ "fdfe4b8f-72bd-4138-86b9-3b7bffef7bb1"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-correlation-request-id": [
+ "5c492f03-21e2-401a-868d-b089ed13abe7"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:5c492f03-21e2-401a-868d-b089ed13abe7"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:57 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "294"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "35fd420f-ba36-402e-a637-c8315216568c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-correlation-request-id": [
+ "b7b74a86-1f6c-4a4d-9665-61cdbb521828"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:b7b74a86-1f6c-4a4d-9665-61cdbb521828"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "534"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "488a4874-c011-49ac-b5b0-7cd5ce3cb422"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-correlation-request-id": [
+ "52d22985-176c-44de-9e8b-2c751478b204"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:52d22985-176c-44de-9e8b-2c751478b204"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "549"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "127e5626-ac58-467b-b616-05e723beee68"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8a07fa1-d110-42f5-81f1-00d7c7d2d1bb"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:e8a07fa1-d110-42f5-81f1-00d7c7d2d1bb"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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=",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "304"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "72dacb40-82a8-4be9-8460-7282b3799d02"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-correlation-request-id": [
+ "e93e8d91-7b2d-476b-a3f0-3cf5e0fa9153"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:e93e8d91-7b2d-476b-a3f0-3cf5e0fa9153"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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",
+ "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/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"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5beb7758-a346-40cb-9ed5-fc9e5acb21bb"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-correlation-request-id": [
+ "4aad65d4-1a46-48d6-b790-f660bf9b27f6"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:4aad65d4-1a46-48d6-b790-f660bf9b27f6"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "568"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "216f8612-8a12-4b32-b2f8-1f12cb7b182c"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-correlation-request-id": [
+ "1228657b-5590-4d93-851e-2c0532ff54b5"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212758Z:1228657b-5590-4d93-851e-2c0532ff54b5"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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==",
+ "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\": \"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]",
+ "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": [
+ "9bc225cb-b54b-49c0-ab82-984d6271fd95"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-correlation-request-id": [
+ "d54051b0-2831-4ef9-a4b6-8bd226c7a58f"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212759Z:d54051b0-2831-4ef9-a4b6-8bd226c7a58f"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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==",
+ "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/your-shop-online/ArtifactTypes/VMImage/Offers/xenofile/Skus/xenofile-basic/Versions/1.0.0\"\r\n }\r\n]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "274"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "3b45feac-826f-49c2-b782-cd84cae1b86b"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-correlation-request-id": [
+ "8c732791-db7f-4b10-aaa7-f26103ded4ec"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212759Z:8c732791-db7f-4b10-aaa7-f26103ded4ec"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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==",
+ "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\": \"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}",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "498"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "e1fea6d5-a830-4362-9ff3-49528e870fd4"
+ ],
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0",
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-correlation-request-id": [
+ "347737d3-9755-4d7f-be66-eddee6228ac0"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS:20150805T212759Z:347737d3-9755-4d7f-be66-eddee6228ac0"
+ ],
+ "Date": [
+ "Wed, 05 Aug 2015 21:27:58 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",
+ "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\": \"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]",
+ "ResponseHeaders": {
+ "Content-Length": [
+ "266"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-request-id": [
+ "5d8e350a-8192-4815-a1ca-c9c146bd1d30"
+ ],
+ "Cache-Control": [
+ "no-cache"
],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "11963"
],
"x-ms-correlation-request-id": [
- "9703d9c9-f3fe-456e-b06e-91a1f45b010a"
+ "613ba6af-d0cf-4b1f-9e90-206456e08df5"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083233Z:9703d9c9-f3fe-456e-b06e-91a1f45b010a"
+ "WESTUS:20150805T212759Z:613ba6af-d0cf-4b1f-9e90-206456e08df5"
],
"Date": [
- "Fri, 29 May 2015 08:32:32 GMT"
+ "Wed, 05 Aug 2015 21:27:58 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkzNjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "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",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"pubippstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\",\r\n \"etag\": \"W/\\\"bf232265-d565-4ee6-9b71-cc18a46ff083\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9361\",\r\n \"fqdn\": \"pubippstestrg9361.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "550"
+ "296"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -708,78 +108101,11 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "97f5f9b2-6578-4365-9e67-6de57492589e"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
- "ETag": [
- "W/\"bf232265-d565-4ee6-9b71-cc18a46ff083\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
- ],
- "x-ms-correlation-request-id": [
- "ac8c1b04-60b5-4d6e-b7ae-95cee6a825fb"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150529T083233Z:ac8c1b04-60b5-4d6e-b7ae-95cee6a825fb"
- ],
- "Date": [
- "Fri, 29 May 2015 08:32:32 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361/?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvcHVibGljSVBBZGRyZXNzZXMvcHViaXBwc3Rlc3RyZzkzNjEvP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9361\"\r\n }\r\n },\r\n \"name\": \"pubippstestrg9361\",\r\n \"type\": \"microsoft.network/publicIPAddresses\",\r\n \"location\": \"westus\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Content-Length": [
- "254"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"pubippstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\",\r\n \"etag\": \"W/\\\"58f42b62-8c96-42ef-a5e1-0b8dc70a3659\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"pubippstestrg9361\",\r\n \"fqdn\": \"pubippstestrg9361.westus.cloudapp.azure.com\"\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "549"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "10"
- ],
"x-ms-request-id": [
- "903ca9d5-b0ec-4ad8-b6b1-9fd0d6228cae"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/903ca9d5-b0ec-4ad8-b6b1-9fd0d6228cae?api-version=2015-05-01-preview"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "2becf5a1-54e2-4cc6-9935-724d13229c64"
],
"Cache-Control": [
"no-cache"
@@ -788,38 +108114,35 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1198"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
],
"x-ms-correlation-request-id": [
- "5dea579c-505b-4d15-b264-26d0eb973010"
+ "e9718085-cb22-414c-8d09-646de3e696aa"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083232Z:5dea579c-505b-4d15-b264-26d0eb973010"
+ "WESTUS:20150805T212759Z:e9718085-cb22-414c-8d09-646de3e696aa"
],
"Date": [
- "Fri, 29 May 2015 08:32:32 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/903ca9d5-b0ec-4ad8-b6b1-9fd0d6228cae?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvOTAzY2E5ZDUtYjBlYy00YWQ4LWI2YjEtOWZkMGQ2MjI4Y2FlP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "29"
+ "292"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -830,12 +108153,12 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c523f681-a8f8-425a-86f0-06e60e465f42"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "22809d8a-7841-45bf-84f9-05ebbabf2eb0"
+ ],
"Cache-Control": [
"no-cache"
],
@@ -844,34 +108167,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "11961"
],
"x-ms-correlation-request-id": [
- "32075461-5315-4176-873c-a6c56943b086"
+ "dc0e39e1-9a0d-4601-b92f-5ffac3a9316d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083233Z:32075461-5315-4176-873c-a6c56943b086"
+ "WESTUS:20150805T212759Z:dc0e39e1-9a0d-4601-b92f-5ffac3a9316d"
],
"Date": [
- "Fri, 29 May 2015 08:32:32 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MzYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"Resource not found.\"\r\n }\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/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}",
"ResponseHeaders": {
"Content-Length": [
- "69"
+ "534"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -882,99 +108205,48 @@
"Pragma": [
"no-cache"
],
- "x-ms-failure-cause": [
- "gateway"
- ],
- "x-ms-request-id": [
- "a5181b14-2b64-436d-a689-d53cb8c5c125"
- ],
- "x-ms-correlation-request-id": [
- "a5181b14-2b64-436d-a689-d53cb8c5c125"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150529T083233Z:a5181b14-2b64-436d-a689-d53cb8c5c125"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Fri, 29 May 2015 08:32:33 GMT"
- ]
- },
- "StatusCode": 404
- },
- {
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MzYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"nicpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1300"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
"x-ms-request-id": [
- "9a15eebe-4639-4aea-902f-dd01e53a36db"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "e1c3f60c-cfbb-48f5-81ae-cfee6fc1ef27"
],
"Cache-Control": [
"no-cache"
],
- "ETag": [
- "W/\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\""
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14988"
+ "11960"
],
"x-ms-correlation-request-id": [
- "3822c482-84e5-4e85-af86-e96f96a2b3a1"
+ "7d548d24-1229-480f-9a83-de778d436cf2"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083234Z:3822c482-84e5-4e85-af86-e96f96a2b3a1"
+ "WESTUS:20150805T212759Z:7d548d24-1229-480f-9a83-de778d436cf2"
],
"Date": [
- "Fri, 29 May 2015 08:32:33 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MzYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Compute/locations/westus/publishers/zend/artifacttypes/vmimage/offers?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvemVuZC9hcnRpZmFjdHR5cGVzL3ZtaW1hZ2Uvb2ZmZXJzP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"nicpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "1300"
+ "244"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -985,75 +108257,11 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "c248d4a1-4950-4aa5-b62f-5772ff39b331"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
- "Cache-Control": [
- "no-cache"
- ],
- "ETag": [
- "W/\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14987"
- ],
- "x-ms-correlation-request-id": [
- "1d2ce673-fb3c-480c-a640-f887a7384c35"
- ],
- "x-ms-routing-request-id": [
- "WESTUS:20150529T083234Z:1d2ce673-fb3c-480c-a640-f887a7384c35"
- ],
- "Date": [
- "Fri, 29 May 2015 08:32:33 GMT"
- ]
- },
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0Lk5ldHdvcmsvbmV0d29ya0ludGVyZmFjZXMvbmljcHN0ZXN0cmc5MzYxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "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/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\"\r\n },\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\"\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\": \"nicpstestrg9361\",\r\n \"type\": \"microsoft.network/networkInterfaces\",\r\n \"location\": \"westus\"\r\n}",
- "RequestHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Content-Length": [
- "857"
- ],
- "User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"nicpstestrg9361\",\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361/ipConfigurations/ipconfig1\",\r\n \"etag\": \"W/\\\"4b1bfaf1-de24-4bff-aa93-caf9695907fc\\\"\",\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/pstestrg9361/providers/Microsoft.Network/publicIPAddresses/pubippstestrg9361\"\r\n },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/virtualNetworks/vnetpstestrg9361/subnets/subnetpstestrg9361\"\r\n }\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {}\r\n },\r\n \"location\": \"westus\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "1300"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
- "Pragma": [
- "no-cache"
- ],
"x-ms-request-id": [
- "781aa3c6-afff-4279-961f-accb21ba4cb3"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/781aa3c6-afff-4279-961f-accb21ba4cb3?api-version=2015-05-01-preview"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "22fd5e76-8346-4d20-87c0-2a9e2a9c022e"
],
"Cache-Control": [
"no-cache"
@@ -1062,38 +108270,35 @@
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
],
"x-ms-correlation-request-id": [
- "a430487e-3c05-440e-b641-c79be39b0471"
+ "555f4bd9-c9d8-4b5a-86ea-0d3d8c432437"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083233Z:a430487e-3c05-440e-b641-c79be39b0471"
+ "WESTUS:20150805T212759Z:555f4bd9-c9d8-4b5a-86ea-0d3d8c432437"
],
"Date": [
- "Fri, 29 May 2015 08:32:33 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
- "StatusCode": 201
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Network/locations/westus/operations/781aa3c6-afff-4279-961f-accb21ba4cb3?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvd2VzdHVzL29wZXJhdGlvbnMvNzgxYWEzYzYtYWZmZi00Mjc5LTk2MWYtYWNjYjIxYmE0Y2IzP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-version": [
- "2015-05-01-preview"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Network.NetworkResourceProviderClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "29"
+ "795"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1104,12 +108309,12 @@
"Pragma": [
"no-cache"
],
- "x-ms-request-id": [
- "939cb97f-5d5d-4379-b652-61ef2becb326"
- ],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
+ "x-ms-request-id": [
+ "ca262b8f-ebc2-45b0-84e6-aea1f8878604"
+ ],
"Cache-Control": [
"no-cache"
],
@@ -1118,43 +108323,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "11958"
],
"x-ms-correlation-request-id": [
- "ec523312-fd71-4732-ae42-c5f2be25e203"
+ "e8b3bcec-1d4a-4d3a-9b98-c412cafb9fad"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083234Z:ec523312-fd71-4732-ae42-c5f2be25e203"
+ "WESTUS:20150805T212759Z:e8b3bcec-1d4a-4d3a-9b98-c412cafb9fad"
],
"Date": [
- "Fri, 29 May 2015 08:32:33 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Storage/storageAccounts/stopstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}",
+ "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==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json"
- ],
- "Content-Length": [
- "88"
- ],
- "x-ms-client-request-id": [
- "84295903-a0c6-4ae0-873e-d04f9f6fbc22"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "null",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "4"
+ "273"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1165,57 +108361,48 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "25"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "8c3f27d7-020d-471f-8b09-09343cae0d9f"
+ "ca7e1897-bcee-421c-9d21-2e959d667eea"
],
"Cache-Control": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8c3f27d7-020d-471f-8b09-09343cae0d9f?monitor=true&api-version=2015-05-01-preview"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
],
"x-ms-correlation-request-id": [
- "bad8f200-ffca-4c08-8bd8-65344c025886"
+ "851d6a2a-9c23-415b-977d-b5b04dac1a06"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083236Z:bad8f200-ffca-4c08-8bd8-65344c025886"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20150805T212759Z:851d6a2a-9c23-415b-977d-b5b04dac1a06"
],
"Date": [
- "Fri, 29 May 2015 08:32:35 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8c3f27d7-020d-471f-8b09-09343cae0d9f?monitor=true&api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhjM2YyN2Q3LTAyMGQtNDcxZi04YjA5LTA5MzQzY2FlMGQ5Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "5a8aead8-8009-4b88-86fb-3b4f315b25ee"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "null",
+ "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}",
"ResponseHeaders": {
"Content-Length": [
- "4"
+ "494"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1226,57 +108413,48 @@
"Pragma": [
"no-cache"
],
- "Retry-After": [
- "25"
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "5bf45040-4367-431b-aa59-e39b14247d8f"
+ "c7781e8d-52c6-4fe1-91b2-13d6a50f5349"
],
"Cache-Control": [
"no-cache"
],
- "Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8c3f27d7-020d-471f-8b09-09343cae0d9f?monitor=true&api-version=2015-05-01-preview"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0",
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14884"
+ "11956"
],
"x-ms-correlation-request-id": [
- "1694c600-17ee-4d2c-97b6-6ed3c64853d9"
+ "21954324-2f81-4252-828e-712c4ea2fcc3"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083236Z:1694c600-17ee-4d2c-97b6-6ed3c64853d9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20150805T212800Z:21954324-2f81-4252-828e-712c4ea2fcc3"
],
"Date": [
- "Fri, 29 May 2015 08:32:36 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
- "StatusCode": 202
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/providers/Microsoft.Storage/operations/8c3f27d7-020d-471f-8b09-09343cae0d9f?monitor=true&api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzhjM2YyN2Q3LTAyMGQtNDcxZi04YjA5LTA5MzQzY2FlMGQ5Zj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "c2290421-848c-4e55-9d19-62727fd4d4a5"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n },\r\n \"location\": \"West US\"\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "66"
+ "273"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1287,8 +108465,11 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-request-id": [
- "c5fd335f-6adc-4c54-927d-99355f11ab63"
+ "cd9e3466-3038-4f36-bdfd-6fa248d2c535"
],
"Cache-Control": [
"no-cache"
@@ -1298,40 +108479,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14883"
+ "11955"
],
"x-ms-correlation-request-id": [
- "5dcc3e02-b8f1-42c6-9e36-9520a9b5e59f"
+ "5c2ef582-76da-4626-b8d3-e8be708cf32c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083301Z:5dcc3e02-b8f1-42c6-9e36-9520a9b5e59f"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20150805T212800Z:5c2ef582-76da-4626-b8d3-e8be708cf32c"
],
"Date": [
- "Fri, 29 May 2015 08:33:01 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Storage/storageAccounts/stopstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "affe4907-077b-4f67-8ca7-cd41f281377d"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Storage/storageAccounts/stopstestrg9361\",\r\n \"name\": \"stopstestrg9361\",\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://stopstestrg9361.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9361.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9361.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-05-29T08:32:34.6089677Z\"\r\n }\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/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}",
"ResponseHeaders": {
"Content-Length": [
- "672"
+ "494"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1342,8 +108517,11 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-request-id": [
- "de5f80f8-b286-429c-b403-48c858e27d07"
+ "c3e07fee-a339-408e-8d08-f7fa543739b2"
],
"Cache-Control": [
"no-cache"
@@ -1353,40 +108531,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14882"
+ "11954"
],
"x-ms-correlation-request-id": [
- "9ab1b0a9-6731-47b7-94dd-16b04bc952e3"
+ "565912cd-57b0-4662-a4d8-0ce0f9086ac9"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083302Z:9ab1b0a9-6731-47b7-94dd-16b04bc952e3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20150805T212800Z:565912cd-57b0-4662-a4d8-0ce0f9086ac9"
],
"Date": [
- "Fri, 29 May 2015 08:33:01 GMT"
+ "Wed, 05 Aug 2015 21:27:59 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Storage/storageAccounts/stopstestrg9361?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LlN0b3JhZ2Uvc3RvcmFnZUFjY291bnRzL3N0b3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "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==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "531b1189-3585-4651-b804-615fe699f069"
- ],
"User-Agent": [
- "Microsoft.Azure.Management.Storage.StorageManagementClient/2.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.0.0.0"
]
},
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Storage/storageAccounts/stopstestrg9361\",\r\n \"name\": \"stopstestrg9361\",\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://stopstestrg9361.blob.core.windows.net/\",\r\n \"queue\": \"https://stopstestrg9361.queue.core.windows.net/\",\r\n \"table\": \"https://stopstestrg9361.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-05-29T08:32:34.6089677Z\"\r\n }\r\n}",
+ "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]",
"ResponseHeaders": {
"Content-Length": [
- "672"
+ "273"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1397,8 +108569,11 @@
"Pragma": [
"no-cache"
],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
"x-ms-request-id": [
- "1eeb0169-352f-449d-84dd-5a2173dfbb27"
+ "47f2e228-9378-4eec-93a8-0551af70a695"
],
"Cache-Control": [
"no-cache"
@@ -1408,37 +108583,34 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14881"
+ "11953"
],
"x-ms-correlation-request-id": [
- "7075af38-6377-4acf-9c0d-41566906703a"
+ "750a7dd5-c22a-4bbe-81cc-0f3430986862"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083302Z:7075af38-6377-4acf-9c0d-41566906703a"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
+ "WESTUS:20150805T212800Z:750a7dd5-c22a-4bbe-81cc-0f3430986862"
],
"Date": [
- "Fri, 29 May 2015 08:33:01 GMT"
+ "Wed, 05 Aug 2015 21:28:00 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.0?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvd2VzdHVzL3B1Ymxpc2hlcnMvYTEwbmV0d29ya3MvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9hMTAtdnRodW5kZXItYWRjL3NrdXMvdnRodW5kZXJfYnlvbC92ZXJzaW9ucy8xLjAuMD9hcGktdmVyc2lvbj0yMDE1LTA2LTE1",
+ "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=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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.0\",\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.0\"\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/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}",
"ResponseHeaders": {
"Content-Length": [
- "502"
+ "494"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1453,7 +108625,7 @@
"max-age=31536000; includeSubDomains"
],
"x-ms-request-id": [
- "047f13a2-a2bb-4335-b038-d063a961df48"
+ "894d2809-6b9c-4a49-a4f5-cc5c928a7d9c"
],
"Cache-Control": [
"no-cache"
@@ -1463,40 +108635,40 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14880"
+ "11952"
],
"x-ms-correlation-request-id": [
- "55047f72-f64e-4c12-a159-5b06ddb26503"
+ "9aca7a16-3597-47b5-bae6-8c8448d54551"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083302Z:55047f72-f64e-4c12-a159-5b06ddb26503"
+ "WESTUS:20150805T212800Z:9aca7a16-3597-47b5-bae6-8c8448d54551"
],
"Date": [
- "Fri, 29 May 2015 08:33:02 GMT"
+ "Wed, 05 Aug 2015 21:28:00 GMT"
]
},
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Compute/virtualMachines/vmpstestrg9361?api-version=2015-06-15",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL3BzdGVzdHJnOTM2MS9wcm92aWRlcnMvTWljcm9zb2Z0LkNvbXB1dGUvdmlydHVhbE1hY2hpbmVzL3ZtcHN0ZXN0cmc5MzYxP2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/crptestps4425/providers/Microsoft.Compute/virtualMachines/vmcrptestps4425?api-version=2015-06-15",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RwczQ0MjUvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bWNycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNS0wNi0xNQ==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"plan\": {\r\n \"name\": \"vthunder_byol\",\r\n \"publisher\": \"a10networks\",\r\n \"product\": \"a10-vthunder-adc\",\r\n \"promotionCode\": \"\"\r\n },\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"a10networks\",\r\n \"offer\": \"a10-vthunder-adc\",\r\n \"sku\": \"vthunder_byol\",\r\n \"version\": \"1.0.0\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"osDisk\",\r\n \"vhd\": {\r\n \"uri\": \"https://stopstestrg9361.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@123pstestrg9361\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"properties\": {},\r\n \"id\": \"/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourceGroups/pstestrg9361/providers/Microsoft.Network/networkInterfaces/nicpstestrg9361\"\r\n }\r\n ]\r\n }\r\n },\r\n \"name\": \"vmpstestrg9361\",\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://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}",
"RequestHeaders": {
"Content-Type": [
"application/json"
],
"Content-Length": [
- "1174"
+ "1147"
],
"User-Agent": [
- "Microsoft.Azure.Management.Compute.ComputeManagementClient/5.0.0.0"
+ "Microsoft.Azure.Management.Compute.ComputeManagementClient/7.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 create this item there for the first time'\"\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": [
- "346"
+ "401"
],
"Content-Type": [
"application/json; charset=utf-8"
@@ -1511,13 +108683,13 @@
"gateway"
],
"x-ms-request-id": [
- "d892f33a-6d99-4cf2-a895-ec281ca3e31d"
+ "4016a237-6af1-4f0c-b5fa-0664f13cea2c"
],
"x-ms-correlation-request-id": [
- "d892f33a-6d99-4cf2-a895-ec281ca3e31d"
+ "4016a237-6af1-4f0c-b5fa-0664f13cea2c"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083303Z:d892f33a-6d99-4cf2-a895-ec281ca3e31d"
+ "WESTUS:20150805T212801Z:4016a237-6af1-4f0c-b5fa-0664f13cea2c"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1526,14 +108698,14 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:02 GMT"
+ "Wed, 05 Aug 2015 21:28:01 GMT"
]
},
"StatusCode": 400
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/pstestrg9361?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL3BzdGVzdHJnOTM2MT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/resourcegroups/crptestps4425?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RwczQ0MjU/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
@@ -1559,13 +108731,13 @@
"1198"
],
"x-ms-request-id": [
- "31522a2b-3246-4fbf-a704-9b3ed4a969f0"
+ "165bef44-ec3b-4c27-9432-c2390b7ff599"
],
"x-ms-correlation-request-id": [
- "31522a2b-3246-4fbf-a704-9b3ed4a969f0"
+ "165bef44-ec3b-4c27-9432-c2390b7ff599"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083303Z:31522a2b-3246-4fbf-a704-9b3ed4a969f0"
+ "WESTUS:20150805T212802Z:165bef44-ec3b-4c27-9432-c2390b7ff599"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1574,17 +108746,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:03 GMT"
+ "Wed, 05 Aug 2015 21:28:02 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1610,16 +108782,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14996"
+ "14677"
],
"x-ms-request-id": [
- "a4b230ff-bb57-4de3-9729-b5c98d18468d"
+ "95d4d757-d592-48d0-b3e0-4ab6410749ad"
],
"x-ms-correlation-request-id": [
- "a4b230ff-bb57-4de3-9729-b5c98d18468d"
+ "95d4d757-d592-48d0-b3e0-4ab6410749ad"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083303Z:a4b230ff-bb57-4de3-9729-b5c98d18468d"
+ "WESTUS:20150805T212802Z:95d4d757-d592-48d0-b3e0-4ab6410749ad"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1628,17 +108800,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:03 GMT"
+ "Wed, 05 Aug 2015 21:28:02 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1664,16 +108836,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14995"
+ "14676"
],
"x-ms-request-id": [
- "f751f487-e9ce-4a9b-97cf-a0228322f686"
+ "5685ba45-53d7-456f-b1d6-17c5aa9f7d6e"
],
"x-ms-correlation-request-id": [
- "f751f487-e9ce-4a9b-97cf-a0228322f686"
+ "5685ba45-53d7-456f-b1d6-17c5aa9f7d6e"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083318Z:f751f487-e9ce-4a9b-97cf-a0228322f686"
+ "WESTUS:20150805T212817Z:5685ba45-53d7-456f-b1d6-17c5aa9f7d6e"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1682,17 +108854,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:18 GMT"
+ "Wed, 05 Aug 2015 21:28:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1718,16 +108890,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14994"
+ "14675"
],
"x-ms-request-id": [
- "17f338e3-2916-4d10-9b33-cfa7620e2fec"
+ "a110ff31-06a3-463b-9ad9-102c8834375d"
],
"x-ms-correlation-request-id": [
- "17f338e3-2916-4d10-9b33-cfa7620e2fec"
+ "a110ff31-06a3-463b-9ad9-102c8834375d"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083333Z:17f338e3-2916-4d10-9b33-cfa7620e2fec"
+ "WESTUS:20150805T212832Z:a110ff31-06a3-463b-9ad9-102c8834375d"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1736,17 +108908,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:33 GMT"
+ "Wed, 05 Aug 2015 21:28:31 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1772,16 +108944,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14993"
+ "14674"
],
"x-ms-request-id": [
- "f54e1c36-9804-47c9-9762-2408577f4786"
+ "254fa7a0-eff4-474e-ba3d-49a4ef11c4ec"
],
"x-ms-correlation-request-id": [
- "f54e1c36-9804-47c9-9762-2408577f4786"
+ "254fa7a0-eff4-474e-ba3d-49a4ef11c4ec"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083348Z:f54e1c36-9804-47c9-9762-2408577f4786"
+ "WESTUS:20150805T212847Z:254fa7a0-eff4-474e-ba3d-49a4ef11c4ec"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1790,17 +108962,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:33:48 GMT"
+ "Wed, 05 Aug 2015 21:28:46 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1826,16 +108998,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14992"
+ "14673"
],
"x-ms-request-id": [
- "8595f936-d7f6-4835-b22a-b7b30a516e9d"
+ "40858de7-e407-439e-91f6-c5b8c9dff694"
],
"x-ms-correlation-request-id": [
- "8595f936-d7f6-4835-b22a-b7b30a516e9d"
+ "40858de7-e407-439e-91f6-c5b8c9dff694"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083403Z:8595f936-d7f6-4835-b22a-b7b30a516e9d"
+ "WESTUS:20150805T212902Z:40858de7-e407-439e-91f6-c5b8c9dff694"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1844,17 +109016,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:34:03 GMT"
+ "Wed, 05 Aug 2015 21:29:02 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1880,16 +109052,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14991"
+ "14672"
],
"x-ms-request-id": [
- "20ed9e51-d7b9-41bd-abd3-cb15d8e0833f"
+ "02be1c4f-0836-4fa4-9b63-3a61ebd22d9b"
],
"x-ms-correlation-request-id": [
- "20ed9e51-d7b9-41bd-abd3-cb15d8e0833f"
+ "02be1c4f-0836-4fa4-9b63-3a61ebd22d9b"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083418Z:20ed9e51-d7b9-41bd-abd3-cb15d8e0833f"
+ "WESTUS:20150805T212917Z:02be1c4f-0836-4fa4-9b63-3a61ebd22d9b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1898,17 +109070,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:34:18 GMT"
+ "Wed, 05 Aug 2015 21:29:17 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1934,16 +109106,16 @@
"15"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14990"
+ "14671"
],
"x-ms-request-id": [
- "4a64a915-6f6d-48d4-8a13-380d78de7906"
+ "f8761f67-ed37-4ea1-a65f-ae73f7ae2753"
],
"x-ms-correlation-request-id": [
- "4a64a915-6f6d-48d4-8a13-380d78de7906"
+ "f8761f67-ed37-4ea1-a65f-ae73f7ae2753"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083433Z:4a64a915-6f6d-48d4-8a13-380d78de7906"
+ "WESTUS:20150805T212932Z:f8761f67-ed37-4ea1-a65f-ae73f7ae2753"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -1952,17 +109124,17 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:34:33 GMT"
+ "Wed, 05 Aug 2015 21:29:31 GMT"
],
"Location": [
- "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview"
+ "https://management.azure.com/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview"
]
},
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1QU1RFU1RSRzkzNjEtV0VTVFVTIiwiam9iTG9jYXRpb24iOiJ3ZXN0dXMifQ?api-version=2014-04-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFRVTFSRlUxUlNSemt6TmpFdFYwVlRWRlZUSWl3aWFtOWlURzlqWVhScGIyNGlPaUozWlhOMGRYTWlmUT9hcGktdmVyc2lvbj0yMDE0LTA0LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/4d368445-cbb1-42a7-97a6-6850ab99f48e/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUUFM0NDI1LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2014-04-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNGQzNjg0NDUtY2JiMS00MmE3LTk3YTYtNjg1MGFiOTlmNDhlL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVVRk0wTkRJMUxWZEZVMVJWVXlJc0ltcHZZa3h2WTJGMGFXOXVJam9pZDJWemRIVnpJbjA/YXBpLXZlcnNpb249MjAxNC0wNC0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
@@ -1985,16 +109157,16 @@
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14989"
+ "14670"
],
"x-ms-request-id": [
- "b654f046-b775-48fb-8a54-c8e9cee61727"
+ "7d4b254f-0fcb-48d2-b280-531d41971a83"
],
"x-ms-correlation-request-id": [
- "b654f046-b775-48fb-8a54-c8e9cee61727"
+ "7d4b254f-0fcb-48d2-b280-531d41971a83"
],
"x-ms-routing-request-id": [
- "WESTUS:20150529T083449Z:b654f046-b775-48fb-8a54-c8e9cee61727"
+ "WESTUS:20150805T212947Z:7d4b254f-0fcb-48d2-b280-531d41971a83"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
@@ -2003,7 +109175,7 @@
"no-cache"
],
"Date": [
- "Fri, 29 May 2015 08:34:48 GMT"
+ "Wed, 05 Aug 2015 21:29:47 GMT"
]
},
"StatusCode": 200
@@ -2011,7 +109183,7 @@
],
"Names": {
"Test-VirtualMachinePlan2": [
- "pstestrg9361"
+ "crptestps4425"
]
},
"Variables": {
@@ -2019,4 +109191,4 @@
"TenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
"Domain": "microsoft.com"
}
-}
+}
\ No newline at end of file
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/Templates/azuredeploy.json b/src/ResourceManager/Compute/Commands.Compute.Test/Templates/azuredeploy.json
new file mode 100644
index 000000000000..12fb30af6f97
--- /dev/null
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/Templates/azuredeploy.json
@@ -0,0 +1,196 @@
+{
+ "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
+ "contentVersion": "1.0.0.0",
+ "parameters": {
+ "adminUsername": {
+ "type": "string",
+ "metadata": {
+ "description": "Admin username for VM"
+ }
+ },
+ "adminPassword": {
+ "type": "securestring",
+ "metadata": {
+ "description": "Admin password for VM"
+ }
+ },
+ "newStorageAccountName": {
+ "type": "string",
+ "metadata": {
+ "description": "Unique storage account name"
+ }
+ },
+ "numberOfInstances": {
+ "type": "int",
+ "defaultValue": 2,
+ "metadata": {
+ "description": "Number of VMs to deploy"
+ }
+ },
+ "location": {
+ "type": "string",
+ "metadata": {
+ "description": "Location to deploy the VM in"
+ }
+ },
+ "vmSize": {
+ "type": "string",
+ "metadata": {
+ "description": "Size of the Virtual Machine."
+ }
+ },
+ "imagePublisher": {
+ "type": "string",
+ "defaultValue": "Canonical",
+ "metadata": {
+ "description": "Image Publisher"
+ }
+ },
+ "imageOffer": {
+ "type": "string",
+ "defaultValue": "UbuntuServer",
+ "metadata": {
+ "description": "Image Offer"
+ }
+ },
+ "imageSKU": {
+ "type": "string",
+ "defaultValue": "14.04.2-LTS",
+ "metadata": {
+ "description": "Image SKU"
+ }
+ }
+ },
+ "variables": {
+ "virtualNetworkName": "myVNET",
+ "vnetID": "[resourceId('Microsoft.Network/virtualNetworks', variables('virtualNetworkName'))]",
+ "addressPrefix": "10.0.0.0/16",
+ "subnet1Name": "Subnet-1",
+ "subnet1Prefix": "10.0.0.0/24",
+ "subnet1Ref": "[concat(variables('vnetID'),'/subnets/', variables('subnet1Name'))]",
+ "vmStorageAccountContainerName": "vhds"
+ },
+ "resources": [
+ {
+ "type": "Microsoft.Storage/storageAccounts",
+ "name": "[parameters('newStorageAccountName')]",
+ "apiVersion": "2015-05-01-preview",
+ "location": "[parameters('location')]",
+ "properties": {
+ "accountType": "Standard_LRS"
+ }
+ },
+ {
+ "apiVersion": "2015-05-01-preview",
+ "type": "Microsoft.Network/virtualNetworks",
+ "name": "[variables('virtualNetworkName')]",
+ "location": "[parameters('location')]",
+ "properties": {
+ "addressSpace": {
+ "addressPrefixes": [
+ "[variables('addressPrefix')]"
+ ]
+ },
+ "subnets": [
+ {
+ "name": "[variables('subnet1Name')]",
+ "properties": {
+ "addressPrefix": "[variables('subnet1Prefix')]"
+ }
+ }
+ ]
+ }
+ },
+ {
+ "apiVersion": "2015-05-01-preview",
+ "type": "Microsoft.Network/publicIPAddresses",
+ "name": "[concat('publicIP', copyIndex())]",
+ "location": "[parameters('location')]",
+ "copy": {
+ "name": "publicIPLoop",
+ "count": "[parameters('numberOfInstances')]"
+ },
+ "properties": {
+ "publicIPAllocationMethod": "Dynamic"
+ }
+ },
+ {
+ "apiVersion": "2015-05-01-preview",
+ "type": "Microsoft.Network/networkInterfaces",
+ "name": "[concat('nic', copyindex())]",
+ "location": "[parameters('location')]",
+ "copy": {
+ "name": "nicLoop",
+ "count": "[parameters('numberOfInstances')]"
+ },
+ "dependsOn": [
+ "[concat('Microsoft.Network/virtualNetworks/', variables('virtualNetworkName'))]",
+ "[concat('Microsoft.Network/publicIPAddresses/', 'publicIP', copyindex())]"
+ ],
+ "properties": {
+ "ipConfigurations": [
+ {
+ "name": "ipconfig1",
+ "properties": {
+ "privateIPAllocationMethod": "Dynamic",
+ "publicIPAddress": {
+ "id": "[resourceId('Microsoft.Network/publicIPAddresses',concat('publicIP', copyindex()))]"
+ },
+ "subnet": {
+ "id": "[variables('subnet1Ref')]"
+ }
+ }
+ }
+ ]
+ }
+ },
+ {
+ "apiVersion": "2015-05-01-preview",
+ "type": "Microsoft.Compute/virtualMachines",
+ "name": "[concat('myvm', copyIndex())]",
+ "location": "[parameters('location')]",
+ "copy": {
+ "name": "virtualMachineLoop",
+ "count": "[parameters('numberOfInstances')]"
+ },
+ "dependsOn": [
+ "[concat('Microsoft.Network/networkInterfaces/', 'nic', copyindex())]",
+ "[concat('Microsoft.Storage/storageAccounts/', parameters('newStorageAccountName'))]"
+ ],
+ "properties": {
+ "hardwareProfile": {
+ "vmSize": "[parameters('vmSize')]"
+ },
+ "osProfile": {
+ "computername": "[concat('vm', copyIndex())]",
+ "adminUsername": "[parameters('adminUsername')]",
+ "adminPassword": "[parameters('adminPassword')]"
+ },
+ "storageProfile": {
+ "imageReference": {
+ "publisher": "[parameters('imagePublisher')]",
+ "offer": "[parameters('imageOffer')]",
+ "sku": "[parameters('imageSKU')]",
+ "version": "latest"
+ },
+ "osDisk": {
+ "name": "osdisk",
+ "vhd": {
+ "uri": "[concat('http://',parameters('newStorageAccountName'),'.blob.core.windows.net/vhds/','osdisk', copyIndex(), '.vhd')]"
+ },
+ "caching": "ReadWrite",
+ "createOption": "FromImage"
+ }
+ },
+ "networkProfile": {
+ "networkInterfaces": [
+ {
+ "id": "[resourceId('Microsoft.Network/networkInterfaces',concat('nic', copyindex()))]"
+ }
+ ]
+ }
+ }
+ }
+ ]
+}
+
diff --git a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
index 15465a598838..4ef28c4d374a 100644
--- a/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
+++ b/src/ResourceManager/Compute/Commands.Compute.Test/packages.config
@@ -7,7 +7,7 @@
-
+
diff --git a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj
index fcd175b6a8a6..9bb7d9ba09fe 100644
--- a/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj
+++ b/src/ResourceManager/Compute/Commands.Compute/Commands.Compute.csproj
@@ -77,8 +77,8 @@
False
..\..\..\packages\Microsoft.Azure.Management.Authorization.0.19.2-preview\lib\net40\Microsoft.Azure.Management.Authorization.dll
-
- ..\..\..\packages\Microsoft.Azure.Management.Compute.7.0.0-preview\lib\net40\Microsoft.Azure.Management.Compute.dll
+
+ ..\..\..\packages\Microsoft.Azure.Management.Compute.8.2.0\lib\net40\Microsoft.Azure.Management.Compute.dll
True
diff --git a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs
index ae3d6a65c60f..225e69f0bb76 100644
--- a/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs
+++ b/src/ResourceManager/Compute/Commands.Compute/VirtualMachine/Operation/GetAzureVMCommand.cs
@@ -91,28 +91,43 @@ public override void ExecuteCmdlet()
}
else
{
- VirtualMachineListResponse result = null;
-
+ VirtualMachineListResponse vmListResult = null;
if (!string.IsNullOrEmpty(this.ResourceGroupName))
{
- result = this.VirtualMachineClient.List(this.ResourceGroupName);
+ vmListResult = this.VirtualMachineClient.List(this.ResourceGroupName);
}
else if (this.NextLink != null)
{
- result = this.VirtualMachineClient.ListNext(this.NextLink.ToString());
+ vmListResult = this.VirtualMachineClient.ListNext(this.NextLink.ToString());
}
else
{
var listParams = new ListParameters();
- result = this.VirtualMachineClient.ListAll(listParams);
+ vmListResult = this.VirtualMachineClient.ListAll(listParams);
}
var psResultList = new List();
- foreach (var item in result.VirtualMachines)
+
+ while (vmListResult != null)
{
- var psItem = Mapper.Map(item);
- psItem = Mapper.Map(result, psItem);
- psResultList.Add(psItem);
+ if (vmListResult.VirtualMachines != null)
+ {
+ foreach (var item in vmListResult.VirtualMachines)
+ {
+ var psItem = Mapper.Map(item);
+ psItem = Mapper.Map(vmListResult, psItem);
+ psResultList.Add(psItem);
+ }
+ }
+
+ if (!string.IsNullOrEmpty(vmListResult.NextLink))
+ {
+ vmListResult = this.VirtualMachineClient.ListNext(vmListResult.NextLink);
+ }
+ else
+ {
+ vmListResult = null;
+ }
}
WriteObject(psResultList, true);
diff --git a/src/ResourceManager/Compute/Commands.Compute/packages.config b/src/ResourceManager/Compute/Commands.Compute/packages.config
index e65e5f7a7b16..de82e2f9f6a6 100644
--- a/src/ResourceManager/Compute/Commands.Compute/packages.config
+++ b/src/ResourceManager/Compute/Commands.Compute/packages.config
@@ -8,7 +8,7 @@
-
+
@@ -18,12 +18,11 @@
-
-
-
-
+
+
+
diff --git a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs
index 1910a5753f72..61b155167b54 100644
--- a/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs
+++ b/src/ServiceManagement/Compute/Commands.ServiceManagement/Extensions/Common/ExtensionManager.cs
@@ -306,7 +306,6 @@ public ExtensionConfiguration Add(DeploymentGetResponse deployment, DeploymentGe
}
var oldExtConfig = deployment.ExtensionConfiguration;
- var oldPeerExtConfig = peerDeployment.ExtensionConfiguration;
ExtensionConfigurationBuilder configBuilder = this.GetBuilder();
foreach (ExtensionConfigurationInput context in inputs)