From 8f6d09b60a1d5291af81206fc5b20e4d56dbf6a8 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Tue, 23 Jan 2018 17:46:54 -0800 Subject: [PATCH 1/2] adding WriteAcceleratorEnabled property for Disks, and adding ComputerName, OsName and OsVersion properties for VM instance view. --- .../DiskRPTests/DiskRPManageByTests.cs | 2 +- .../DiskRPTests/DiskRPTestsBase.cs | 2 +- .../Compute/Compute.Tests/Helpers/Helpers.cs | 30 +- .../ScenarioTests/ExtensionTests.cs | 2 +- .../Compute.Tests/ScenarioTests/ImageTests.cs | 2 +- .../ScenarioTests/ListSkuTests.cs | 1 - .../ScenarioTests/ListVMTests.cs | 4 +- .../ScenarioTests/OSProfileTests.cs | 21 +- .../Compute.Tests/ScenarioTests/UsageTests.cs | 2 +- .../ScenarioTests/VMCertificateTests.cs | 2 +- .../ScenarioTests/VMDataDiskTests.cs | 2 +- .../ScenarioTests/VMDiagnosticsTests.cs | 2 +- .../ScenarioTests/VMDiskEncryptionTests.cs | 8 +- .../ScenarioTests/VMDiskSizeTests.cs | 2 +- .../ScenarioTests/VMMarketplaceTest.cs | 4 +- .../ScenarioTests/VMOperationalTests.cs | 8 +- .../ScenarioTests/VMRunCommandsTests.cs | 2 +- .../ScenarioTests/VMScenarioTests.cs | 60 +- .../Compute.Tests/ScenarioTests/VMTestBase.cs | 107 +- .../TestListSkus.json | 2 +- .../TestVMOperations.json | 4 +- .../TestListVMRunCommands.json | 66 +- .../TestVMScenarioOperations.json | 2177 +++++------------ ...TestVMScenarioOperations_ManagedDisks.json | 1658 ++++--------- ...perations_ManagedDisks_PirImage_Zones.json | 1472 ++++------- .../VMScaleSetNetworkProfileTests.cs | 4 +- .../Generated/ComputeManagementClient.cs | 12 +- .../Generated/IComputeManagementClient.cs | 10 +- .../Generated/Models/DataDisk.cs | 12 +- .../Generated/Models/OSDisk.cs | 12 +- .../Models/VirtualMachineInstanceView.cs | 30 +- .../Models/VirtualMachineScaleSetDataDisk.cs | 12 +- .../Models/VirtualMachineScaleSetOSDisk.cs | 12 +- .../VirtualMachineScaleSetUpdateOSDisk.cs | 12 +- .../SdkInfo_ComputeManagementClient.cs | 3 +- .../VirtualMachineRunCommandsOperations.cs | 4 +- .../Generated/VirtualMachinesOperations.cs | 2 +- .../Microsoft.Azure.Management.Compute.csproj | 4 +- .../Properties/AssemblyInfo.cs | 2 +- .../_metadata/compute_resource-manager.txt | 8 +- 40 files changed, 1860 insertions(+), 3921 deletions(-) diff --git a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs index 43e1b6fbb68d9..30af6d9b8d9d9 100644 --- a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs +++ b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs @@ -35,7 +35,7 @@ public void DiskManagedByTest() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, avSet, storageAccountOutput, imageRef, out inputVM, hasManagedDisks: true); + var createdVM = CreateVM(rgName, avSet, storageAccountOutput, imageRef, out inputVM, hasManagedDisks: true); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 1); var vmName = createdVM.Name; diff --git a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs index f58855a6ec91d..70b1bbc542b08 100644 --- a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs +++ b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs @@ -367,7 +367,7 @@ private Disk GenerateImportDisk(DiskCreateOption diskCreateOption, string rgName var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var createdVM = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 1); string[] id = createdVM.Id.Split('/'); diff --git a/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs b/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs index 8c47a2db70096..3dd52068b85cb 100644 --- a/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs +++ b/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs @@ -43,9 +43,10 @@ public static void DeleteIfExists(this IResourceGroupsOperations rgOps, string r } } - public static void ValidateVirtualMachineSizeListResponse(IEnumerable vmSizeListResponse, bool hasAZ = false) + public static void ValidateVirtualMachineSizeListResponse(IEnumerable vmSizeListResponse, bool hasAZ = false, + bool? writeAcceleratorEnabled = null) { - var expectedVMSizePropertiesList = GetExpectedVirtualMachineSize(hasAZ); + var expectedVMSizePropertiesList = GetExpectedVirtualMachineSize(hasAZ, writeAcceleratorEnabled); IEnumerable vmSizesPropertyList = vmSizeListResponse; Assert.NotNull(vmSizesPropertyList); @@ -63,10 +64,31 @@ public static void ValidateVirtualMachineSizeListResponse(IEnumerable GetExpectedVirtualMachineSize(bool hasAZ) + private static List GetExpectedVirtualMachineSize(bool hasAZ, bool? writeAcceleratorEnabled = null) { var expectedVMSizePropertiesList = new List(); - if (hasAZ) + if (writeAcceleratorEnabled.HasValue && writeAcceleratorEnabled.Value) + { + expectedVMSizePropertiesList.Add(new VirtualMachineSize() + { + Name = "Standard_M64s", + MemoryInMB = 1024000, + NumberOfCores = 64, + OsDiskSizeInMB = 1047552, + ResourceDiskSizeInMB = 2048000, + MaxDataDiskCount = 64 + }); + expectedVMSizePropertiesList.Add(new VirtualMachineSize() + { + Name = "Standard_M64-16ms", + MemoryInMB = 1792000, + NumberOfCores = 64, + OsDiskSizeInMB = 1047552, + ResourceDiskSizeInMB = 2048000, + MaxDataDiskCount = 64 + }); + } + else if (hasAZ) { expectedVMSizePropertiesList.Add(new VirtualMachineSize() { diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index c736af697e3bd..8b819c0efa4de 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -53,7 +53,7 @@ public void TestVMExtensionOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var vm = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); // Delete an extension that does not exist in the VM. A http status code of NoContent should be returned which translates to operation success. m_CrpClient.VirtualMachineExtensions.Delete(rgName, vm.Name, "VMExtensionDoesNotExist"); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs index b55823c5d1d62..896e0a6025fd2 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs @@ -86,7 +86,7 @@ public void TestImageOperations() }; // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, addDataDiskToVM); + var createdVM = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, addDataDiskToVM); // Create the Image var imageInput = new Image() diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs index cc2fa84662b3b..fd8dedec53318 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs @@ -31,7 +31,6 @@ public void TestListSkus() Assert.True(skus.Any(sku => sku.LocationInfo != null), "Assert that the sku list has non null location info in it."); Assert.True(skus.All(sku => sku.LocationInfo.Count == 1), "There should be exactly one location info per entry."); Assert.True(skus.Any(sku => sku.LocationInfo[0].Location.Equals("westus", StringComparison.Ordinal)), "Assert that it has entry for one of the CRP regions (randomly picked)."); - Assert.True(skus.Any(sku => sku.Restrictions != null && sku.Restrictions[0].RestrictionInfo != null), "Assert that it has entry for some restriction and restriction info."); } } } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs index c2f7bc8eed4b0..8dbd0928ec8b9 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs @@ -33,8 +33,8 @@ public void TestListVMInSubscription() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); - var vm2 = CreateVM_NoAsyncTracking(rg2Name, asName, storageAccountOutput, imageRef, out inputVM2); + var vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); + var vm2 = CreateVM(rg2Name, asName, storageAccountOutput, imageRef, out inputVM2); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 2); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs index 34185666410f9..e8ee21ac55b8d 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs @@ -267,7 +267,7 @@ private void TestVMWithOSProfile( { StorageAccount storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - VirtualMachine vm = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, vmCustomizer); + VirtualMachine vm = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, vmCustomizer); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse); @@ -279,19 +279,12 @@ private void TestVMWithOSProfile( vmValidator(vm); } - m_CrpClient.VirtualMachines.Delete(rgName, vm.Name); - - // TODO: VM delete operation takes too long, disable it for now - // lroResponse = m_CrpClient.VirtualMachines.Delete(rgName, vm.Name); - // Assert.True(lroResponse.Status == ComputeOperationStatus.Succeeded); + m_CrpClient.VirtualMachines.BeginDelete(rgName, vm.Name); } finally { if (m_ResourcesClient != null) { - // TODO: RG delete operation takes too long, disable it for now - // var deleteResourceGroupResponse = m_ResourcesClient.ResourceGroups.Delete(rgName); - // Assert.True(deleteResourceGroupResponse.StatusCode == HttpStatusCode.OK); m_ResourcesClient.ResourceGroups.Delete(rgName); } } @@ -302,16 +295,6 @@ private void TestVMWithOSProfile( public static string ReadFromEmbeddedResource(Type type, string resourceName) { throw new NotSupportedException("\'type.Assembly\' is not supported for cross platform"); - //string result; - //using (Stream manifestResourceStream = type.Assembly.GetManifestResourceStream(type, resourceName) ?? type.Assembly.GetManifestResourceStream(resourceName)) - //{ - // using (StreamReader streamReader = new StreamReader(manifestResourceStream)) - // { - // result = streamReader.ReadToEnd(); - // } - //} - - //return result; } private static string GetAutoLogonContent(uint logonCount, string userName, string password) diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs index 2c7cae30cd813..7db95bfc79aa1 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs @@ -44,7 +44,7 @@ public void TestListUsages() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); // List Usages, and do weak validation to assure that some usages were returned. var luResponse = m_CrpClient.Usage.List(vm1.Location); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs index 43a5c48fd5af2..2d61adc4f38e0 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs @@ -44,7 +44,7 @@ public void TestVMCertificatesOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, AddCertificateInfo); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, AddCertificateInfo); m_CrpClient.VirtualMachines.Delete(rgName, inputVM.Name); } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs index f1f6d19d6512b..680dcbb6a92e2 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs @@ -106,7 +106,7 @@ public void TestVMDataDiskScenario() }; */ }; - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imgageRef, out inputVM, addDataDiskToVM); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imgageRef, out inputVM, addDataDiskToVM); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); Assert.True(getVMWithInstanceViewResponse != null, "VM in Get"); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs index ff18d9146806b..5e2d8403e3740 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs @@ -41,7 +41,7 @@ public void TestVMBootDiagnostics() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); VirtualMachine inputVM; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => { vm.DiagnosticsProfile = GetDiagnosticsProfile(storageAccountOutput.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs index af6f0fab0238c..f0d7f60da8164 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs @@ -43,20 +43,20 @@ public void TestVMDiskEncryption() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); //Create VM with encryptionKey VirtualMachine inputVM1; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM1, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM1, (vm) => { vm.StorageProfile.OsDisk.EncryptionSettings = GetEncryptionSettings(); vm.HardwareProfile.VmSize = "Standard_D1"; - }, waitOperation: false); + }, waitForCompletion: false); //Create VM with encryptionKey and KEK VirtualMachine inputVM2; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM2, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM2, (vm) => { vm.StorageProfile.OsDisk.EncryptionSettings = GetEncryptionSettings(addKek:true); vm.HardwareProfile.VmSize = "Standard_D1"; - }, waitOperation: false); + }, waitForCompletion: false); m_CrpClient.VirtualMachines.Delete(rgName, inputVM1.Name); m_CrpClient.VirtualMachines.Delete(rgName, inputVM2.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs index e1d633f5f9d60..7a0e7f8e08a32 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs @@ -33,7 +33,7 @@ public void TestVMDiskSizeScenario() { var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => { vm.StorageProfile.OsDisk.DiskSizeGB = 150; }); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs index 7b4393f2c321c..4d40b8a1d5bf1 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs @@ -68,7 +68,7 @@ public void TestVMMarketplace() inputVM = null; try { - vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); + vm1 = CreateVM(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); } catch (Exception ex) { @@ -122,7 +122,7 @@ public void TestVMBYOL() VirtualMachine vm1 = null; try { - vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); + vm1 = CreateVM(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); } catch (Exception ex) { diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs index e39dd8e35f360..0a77506288bc3 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs @@ -86,7 +86,7 @@ public void TestVMOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, as1Name, storageAccountOutput, imageRef, out inputVM1); + VirtualMachine vm1 = CreateVM(rg1Name, as1Name, storageAccountOutput, imageRef, out inputVM1); m_CrpClient.VirtualMachines.Start(rg1Name, vm1.Name); m_CrpClient.VirtualMachines.Redeploy(rg1Name, vm1.Name); @@ -137,7 +137,7 @@ public void TestVMOperations() // TODO : Provisioning Time-out Issues VirtualMachine inputVM2; string as2Name = as1Name + "b"; - VirtualMachine vm2 = CreateVM_NoAsyncTracking(rg1Name, as2Name, storageAccountOutput, imageRef, out inputVM2, + VirtualMachine vm2 = CreateVM(rg1Name, as2Name, storageAccountOutput, imageRef, out inputVM2, vm => { vm.StorageProfile.ImageReference = null; @@ -187,7 +187,7 @@ public void TestVMOperations_Redeploy() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, + VirtualMachine vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); var redeployOperationResponse = m_CrpClient.VirtualMachines.BeginRedeployWithHttpMessagesAsync(rg1Name, vm1.Name); @@ -242,7 +242,7 @@ public void TestVMOperations_PerformMaintenance() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, + VirtualMachine vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); m_CrpClient.VirtualMachines.PerformMaintenance(rg1Name, vm1.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs index 0242b504c643d..868df3d597267 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs @@ -21,7 +21,7 @@ public void TestListVMRunCommands() var computeClient = ComputeManagementTestUtilities.GetComputeManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); string location = ComputeManagementTestUtilities.DefaultLocation.Replace(" ", ""); - string documentId = "PowerShellScript"; + string documentId = "RunPowerShellScript"; // Verify the List of commands IEnumerable runCommandListResponse = computeClient.VirtualMachineRunCommands.List(location); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs index 62b0841191248..5f775bb6dad1a 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Threading; using Xunit; namespace Compute.Tests @@ -25,7 +26,6 @@ public class VMScenarioTests : VMTestBase /// GETVMs in a RG /// List VMSizes in a RG /// List VMSizes in an AvailabilitySet - /// Delete VM /// Delete RG /// [Fact] @@ -39,20 +39,33 @@ public void TestVMScenarioOperations() /// Covers following Operations for managed disks: /// Create RG /// Create Network Resources - /// Create VM + /// Create VM with WriteAccelerator enabled OS and Data disk /// GET VM Model View /// GET VM InstanceView /// GETVMs in a RG /// List VMSizes in a RG /// List VMSizes in an AvailabilitySet - /// Delete VM /// Delete RG + /// + /// To record this test case, you need to run it in region which support XMF VMSizeFamily like eastus2. /// [Fact] [Trait("Name", "TestVMScenarioOperations_ManagedDisks")] public void TestVMScenarioOperations_ManagedDisks() { - TestVMScenarioOperationsInternal("TestVMScenarioOperations_ManagedDisks", hasManagedDisks: true); + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + try + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2"); + TestVMScenarioOperationsInternal("TestVMScenarioOperations_ManagedDisks", vmSize: "Standard_M64s", hasManagedDisks: true, + storageAccountType: StorageAccountTypes.PremiumLRS, writeAcceleratorEnabled: true); + } + finally + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + } + + } /// @@ -74,13 +87,15 @@ public void TestVMScenarioOperations_ManagedDisks_PirImage_Zones() } } - private void TestVMScenarioOperationsInternal(string methodName, bool hasManagedDisks = false, IList zones = null) + private void TestVMScenarioOperationsInternal(string methodName, bool hasManagedDisks = false, IList zones = null, string vmSize = VirtualMachineSizeTypes.StandardA0, + StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, bool? writeAcceleratorEnabled = null) { using (MockContext context = MockContext.Start(this.GetType().FullName, methodName)) { EnsureClientsInitialized(context); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + const string expectedOSName = "Windows Server 2012 R2 Datacenter", expectedOSVersion = "Microsoft Windows NT 6.3.9600.0", expectedComputerName = ComputerName; // Create resource group var rgName = ComputeManagementTestUtilities.GenerateName(TestPrefix); string storageAccountName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -90,41 +105,46 @@ private void TestVMScenarioOperationsInternal(string methodName, bool hasManaged { if (!hasManagedDisks) { - // Create Storage Account, so that both the VMs can share it - var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - - m_CrpClient.VirtualMachines.Delete(rgName, "VMDoesNotExist"); - - m_CrpClient.AvailabilitySets.Delete(rgName, "ASDoesNotExist"); + CreateStorageAccount(rgName, storageAccountName); } - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountName, imageRef, out inputVM, hasManagedDisks: hasManagedDisks, zones: zones); + CreateVM(rgName, asName, storageAccountName, imageRef, out inputVM, hasManagedDisks: hasManagedDisks, vmSize: vmSize, storageAccountType: storageAccountType, + writeAcceleratorEnabled: writeAcceleratorEnabled, zones: zones); + // NOTE: In record mode, uncomment this line. This is to ensure that there is sufficient time for VMAgent to populate status blob with OS details. + // Thread.Sleep(TimeSpan.FromMinutes(5)); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); Assert.True(getVMWithInstanceViewResponse != null, "VM in Get"); - ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse, hasManagedDisks); + ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); var getVMInstanceViewResponse = m_CrpClient.VirtualMachines.InstanceView(rgName, inputVM.Name); Assert.True(getVMInstanceViewResponse != null, "VM in InstanceView"); - ValidateVMInstanceView(inputVM, getVMInstanceViewResponse, hasManagedDisks); + ValidateVMInstanceView(inputVM, getVMInstanceViewResponse, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); bool hasUserDefinedAS = zones == null; var listResponse = m_CrpClient.VirtualMachines.List(rgName); ValidateVM(inputVM, listResponse.FirstOrDefault(x => x.Name == inputVM.Name), - Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name), hasManagedDisks, hasUserDefinedAS); + Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name), hasManagedDisks, hasUserDefinedAS, writeAcceleratorEnabled); var listVMSizesResponse = m_CrpClient.VirtualMachines.ListAvailableSizes(rgName, inputVM.Name); - Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null); + Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null, writeAcceleratorEnabled: writeAcceleratorEnabled); listVMSizesResponse = m_CrpClient.AvailabilitySets.ListAvailableSizes(rgName, asName); - Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null); - - m_CrpClient.VirtualMachines.Delete(rgName, inputVM.Name); + Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null, writeAcceleratorEnabled: writeAcceleratorEnabled); } finally { - m_ResourcesClient.ResourceGroups.Delete(rgName); + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } } } } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index cac3a4c2df061..8299581717b05 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -26,6 +26,7 @@ public class VMTestBase { protected const string TestPrefix = "crptestar"; protected const string PLACEHOLDER = "[PLACEHOLDER]"; + protected const string ComputerName = "Test"; protected ResourceManagementClient m_ResourcesClient; protected ComputeManagementClient m_CrpClient; @@ -190,31 +191,33 @@ protected StorageAccount CreateStorageAccount(string rgName, string storageAccou } } - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVM( string rgName, string asName, StorageAccount storageAccount, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, bool createWithPublicIpAddress = false, - bool waitOperation = true, + bool waitForCompletion = true, bool hasManagedDisks = false) { - return CreateVM_NoAsyncTracking(rgName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, - createWithPublicIpAddress, waitOperation, hasManagedDisks); + return CreateVM(rgName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, createWithPublicIpAddress, waitForCompletion, hasManagedDisks); } - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVM( string rgName, string asName, string storageAccountName, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, bool createWithPublicIpAddress = false, - bool waitOperation = true, + bool waitForCompletion = true, bool hasManagedDisks = false, + string vmSize = VirtualMachineSizeTypes.StandardA0, + StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, + bool? writeAcceleratorEnabled = null, IList zones = null) { try { // Create the resource Group, it might have been already created during StorageAccount creation. - var resourceGroup = m_ResourcesClient.ResourceGroups.CreateOrUpdate( + m_ResourcesClient.ResourceGroups.CreateOrUpdate( rgName, new ResourceGroup { @@ -238,7 +241,7 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); - inputVM = CreateDefaultVMInput(rgName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); + inputVM = CreateDefaultVMInput(rgName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks, vmSize, storageAccountType, writeAcceleratorEnabled); if (zones != null) { @@ -255,12 +258,14 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string expectedVMReferenceId = Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name); VirtualMachine createOrUpdateResponse = null; - if (waitOperation) + if (waitForCompletion) { + // CreateOrUpdate polls for the operation completion and returns once the operation reaches a terminal state createOrUpdateResponse = m_CrpClient.VirtualMachines.CreateOrUpdate(rgName, inputVM.Name, inputVM); } else { + // BeginCreateOrUpdate returns immediately after the request is accepted by CRP createOrUpdateResponse = m_CrpClient.VirtualMachines.BeginCreateOrUpdate(rgName, inputVM.Name, inputVM); } @@ -278,17 +283,16 @@ protected VirtualMachine CreateVM_NoAsyncTracking( Assert.True(createOrUpdateResponse.Zones.FirstOrDefault() == zones.FirstOrDefault()); } - // CONSIDER dropping this Get and ValidateVM call. Nothing changes in the VM model after it's accepted. - // There might have been intent to track the async operation to completion and then check the VM is - // still this and okay, but that's not what the code above does and still doesn't make much sense. + // The intent here is to validate that the GET response is as expected. var getResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name); - ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, hasUserDefinedAS: zones == null); + ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, writeAcceleratorEnabled: writeAcceleratorEnabled, hasUserDefinedAS: zones == null); return getResponse; } catch { - m_ResourcesClient.ResourceGroups.Delete(rgName); + // Just trigger DeleteRG, rest would be taken care of by ARM + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); throw; } } @@ -726,7 +730,8 @@ protected string CreateAvailabilitySet(string rgName, string asName, bool hasMan return asetId; } - protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false) + protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false, + string vmSize = VirtualMachineSizeTypes.StandardA0, StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, bool? writeAcceleratorEnabled = null) { // Generate Container name to hold disk VHds string containerName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -734,6 +739,12 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou var vhduri = vhdContainer + string.Format("/{0}.vhd", ComputeManagementTestUtilities.GenerateName(TestPrefix)); var osVhduri = vhdContainer + string.Format("/os{0}.vhd", ComputeManagementTestUtilities.GenerateName(TestPrefix)); + if (writeAcceleratorEnabled.HasValue) + { + // WriteAccelerator is only allowed on VMs with Managed disks + Assert.True(hasManagedDisks); + } + var vm = new VirtualMachine { Location = m_location, @@ -741,7 +752,7 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou AvailabilitySet = new Microsoft.Azure.Management.Compute.Models.SubResource() { Id = asetId }, HardwareProfile = new HardwareProfile { - VmSize = VirtualMachineSizeTypes.StandardA0 + VmSize = vmSize }, StorageProfile = new StorageProfile { @@ -749,11 +760,16 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou OsDisk = new OSDisk { Caching = CachingTypes.None, + WriteAcceleratorEnabled = writeAcceleratorEnabled, CreateOption = DiskCreateOptionTypes.FromImage, Name = "test", Vhd = hasManagedDisks ? null : new VirtualHardDisk { Uri = osVhduri + }, + ManagedDisk = !hasManagedDisks ? null : new ManagedDiskParameters + { + StorageAccountType = storageAccountType } }, DataDisks = !hasManagedDisks ? null : new List() @@ -761,12 +777,13 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou new DataDisk() { Caching = CachingTypes.None, + WriteAcceleratorEnabled = writeAcceleratorEnabled, CreateOption = DiskCreateOptionTypes.Empty, Lun = 0, DiskSizeGB = 30, ManagedDisk = new ManagedDiskParameters() { - StorageAccountType = StorageAccountTypes.StandardLRS + StorageAccountType = storageAccountType } } }, @@ -785,7 +802,7 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou { AdminUsername = "Foo12", AdminPassword = PLACEHOLDER, - ComputerName = "test" + ComputerName = ComputerName } }; @@ -794,7 +811,8 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou return vm; } - protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false, bool hasUserDefinedAS = true) + protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false, bool hasUserDefinedAS = true, + bool? writeAcceleratorEnabled = null) { Assert.True(vmOut.LicenseType == vm.LicenseType); @@ -839,6 +857,15 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect { Assert.NotNull(vmOut.StorageProfile.OsDisk.ManagedDisk.Id); } + + if (writeAcceleratorEnabled.HasValue) + { + Assert.Equal(writeAcceleratorEnabled.Value, vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } + else + { + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } } else { @@ -856,8 +883,7 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect { foreach (var dataDisk in vm.StorageProfile.DataDisks) { - var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault( - d => dataDisk.Lun == d.Lun); + var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault(d => dataDisk.Lun == d.Lun); Assert.NotNull(dataDiskOut); Assert.Equal(dataDiskOut.DiskSizeGB, dataDisk.DiskSizeGB); @@ -885,6 +911,14 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect dataDisk.ManagedDisk.StorageAccountType); } Assert.NotNull(dataDiskOut.ManagedDisk.Id); + if (writeAcceleratorEnabled.HasValue) + { + Assert.Equal(writeAcceleratorEnabled.Value, dataDiskOut.WriteAcceleratorEnabled); + } + else + { + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } } else { @@ -895,6 +929,7 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect Assert.NotNull(dataDiskOut.Image); Assert.Equal(dataDisk.Image.Uri, dataDiskOut.Image.Uri); } + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); } // ReSharper enable PossibleNullReferenceException } @@ -931,18 +966,23 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect Assert.NotNull(vmOut.VmId); } - protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachine vmOut, bool hasManagedDisks = false) + protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachine vmOut, bool hasManagedDisks = false, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { Assert.NotNull(vmOut.InstanceView); - ValidateVMInstanceView(vmIn, vmOut.InstanceView, hasManagedDisks); + ValidateVMInstanceView(vmIn, vmOut.InstanceView, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); } - protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false) + protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { - ValidateVMInstanceView(vmInstanceView, hasManagedDisks, !hasManagedDisks ? vmIn.StorageProfile.OsDisk.Name : null); + ValidateVMInstanceView(vmInstanceView, hasManagedDisks, + !hasManagedDisks ? vmIn.StorageProfile.OsDisk.Name : null, + expectedComputerName, expectedOSName, expectedOSVersion); } - private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, string osDiskName = null) + private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, string osDiskName = null, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { Assert.Contains(vmInstanceView.Statuses, s => !string.IsNullOrEmpty(s.Code)); @@ -964,6 +1004,19 @@ private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, b //Assert.NotNull(diskInstanceView.Statuses[0].Message); // TODO: it's null somtimes. //Assert.NotNull(diskInstanceView.Statuses[0].Time); // TODO: it's null somtimes. } + + if (expectedComputerName != null) + { + Assert.Equal(expectedComputerName, vmInstanceView.ComputerName); + } + if (expectedOSName != null) + { + Assert.Equal(expectedOSName, vmInstanceView.OsName); + } + if (expectedOSVersion != null) + { + Assert.Equal(expectedOSVersion, vmInstanceView.OsVersion); + } } protected void ValidatePlan(Microsoft.Azure.Management.Compute.Models.Plan inputPlan, Microsoft.Azure.Management.Compute.Models.Plan outPutPlan) @@ -981,7 +1034,5 @@ protected void ValidatePlan(Microsoft.Azure.Management.Compute.Models.Plan input Assert.Equal(inputPlan.Product, outPutPlan.Product); Assert.Equal(inputPlan.PromotionCode, outPutPlan.PromotionCode); } - - } } diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json index 9a51b6756ba8d..ecdfa4f0d8932 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json @@ -19,7 +19,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1088.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": [{\r\n \"type\": \"Location\",\r\n \"values\": [\"eastus2\"],\r\n \"restrictionInfo\": {\r\n \"locations\": [\"eastus2\"]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n}, {\r\n \"type\": \"Zone\",\r\n \"values\": [\"eastus2\"],\r\n \"restrictionInfo\": {\r\n \"locations\": [\"eastus2\"],\r\n \"zones\": [\"1\", \"2\", \"3\"]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }]\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "605246" diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index d61d0f6f191cb..ce0a6ee441359 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -2822,8 +2822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar49701/providers/Microsoft.Compute/virtualMachines/vm5990/runCommand?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01OTkwL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar49701/providers/Microsoft.Compute/virtualMachines/vm5990/runCommand?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01OTkwL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"commandId\": \"RunPowerShellScript\",\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$arg1,\",\r\n \" [string]$arg2\",\r\n \")\",\r\n \"echo This is a sample script with parameters $arg1 $arg2\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"arg1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"arg2\",\r\n \"value\": \"value2\"\r\n }\r\n ]\r\n}", "RequestHeaders": { diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json index fc06609e6ebf5..eb1cdd68045b3 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33504a08-ab91-44e3-9f7e-0c2a764aee21" + "1557001a-2e16-497e-b632-416fdb99584c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1637.0", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.488.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.942.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableRemotePS\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable remote PowerShell\",\r\n \"description\": \"Configure the machine to enable remote powershell.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"GetRDP\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"RDP configuration\",\r\n \"description\": \"List detailed information for the RDP settings: port number, domain profile, etc. and optionally reset the RDP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"IPConfig\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"List IP configuration\",\r\n \"description\": \"Shows detailed information for the IP address, subnet mask and default gateway for each adapter bound to TCP/IP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"PowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Executes a custom PowerShell script with optional parameters.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"CustomScriptForLinux\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"Executes a Linux shell script\",\r\n \"description\": \"Executes a custom script with optional parameters.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ifconfig\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"List network configuration\",\r\n \"description\": \"Get the configuration of all network interfaces.\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableRemotePS\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable remote PowerShell\",\r\n \"description\": \"Configure the machine to enable remote PowerShell.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"IPConfig\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"List IP configuration\",\r\n \"description\": \"Shows detailed information for the IP address, subnet mask and default gateway for each adapter bound to TCP/IP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunPowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Custom multiline PowerShell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunShellScript\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"Executes a Linux shell script\",\r\n \"description\": \"Custom multiline shell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ifconfig\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"List network configuration\",\r\n \"description\": \"Get the configuration of all network interfaces.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableAdminAccount\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable administrator account\",\r\n \"description\": \"Checks if the local Administrator account is disabled, and if so enables it.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ResetAccountPassword\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Reset built-in Administrator account password\",\r\n \"description\": \"Reset built-in Administrator account password.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RDPSettings\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Verify RDP Listener Settings\",\r\n \"description\": \"Checks registry settings and domain policy settings. Suggests policy actions if machine is part of a domain or modifies the settings to default values.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"SetRDPPort\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Set Remote Desktop port\",\r\n \"description\": \"Sets the default or user specified port number for Remote Desktop connections. Enables firewall rule for inbound access to the port.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ResetRDPCert\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Restore RDP Authentication mode to defaults\",\r\n \"description\": \"Removes the SSL certificate tied to the RDP listener and restores the RDP listerner security to default. Use this script if you see any issues with the certificate.\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1849" + "3445" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,14 +33,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4799,Microsoft.Compute/LowCostGet30Min;38399" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_131339989493700012" + "c18570f4-edc2-4f83-9d5a-8a888cbd0148_131600023114504580" ], "x-ms-request-id": [ - "663fc897-801b-4d17-8b11-d88329d907de" + "6d438d5e-e671-4ad8-81e9-4b5f2b7ceeb1" ], "Cache-Control": [ "no-cache" @@ -50,43 +53,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14999" ], "x-ms-correlation-request-id": [ - "98be8e4b-e66b-4461-8430-ac2165efa695" + "1530707d-5190-4fa4-bfa1-4505c019998e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20170427T180326Z:98be8e4b-e66b-4461-8430-ac2165efa695" + "WESTUS2:20180111T214846Z:1530707d-5190-4fa4-bfa1-4505c019998e" ], "Date": [ - "Thu, 27 Apr 2017 18:03:26 GMT" + "Thu, 11 Jan 2018 21:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands/PowerShellScript?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcy9Qb3dlclNoZWxsU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands/RunPowerShellScript?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcy9SdW5Qb3dlclNoZWxsU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b266ab1-833b-49af-b047-2d0555f21e6a" + "562b98ac-b6bc-455e-b486-ddf8e685bc51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1637.0", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.488.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.942.0" ] }, - "ResponseBody": "{\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$customScript,\",\r\n \" [string]$customParameters\",\r\n \")\",\r\n \"$scriptBlock = [Scriptblock]::Create(\\\".{$customScript} $(&{$args} $customParameters)\\\")\",\r\n \"Invoke-Command $scriptBlock\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"customScript\",\r\n \"type\": \"string\",\r\n \"required\": true\r\n },\r\n {\r\n \"name\": \"customParameters\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n }\r\n ],\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"PowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Executes a custom PowerShell script with optional parameters.\"\r\n}", + "ResponseBody": "{\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$arg1,\",\r\n \" [string]$arg2\",\r\n \")\",\r\n \"Write-Host This is a sample script with parameters $arg1 $arg2\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"arg1\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n },\r\n {\r\n \"name\": \"arg2\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n }\r\n ],\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunPowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Custom multiline PowerShell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "737" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,14 +100,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4798,Microsoft.Compute/LowCostGet30Min;38398" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_131339989493700012" + "c18570f4-edc2-4f83-9d5a-8a888cbd0148_131600023114504580" ], "x-ms-request-id": [ - "26964d24-3fe5-4c1e-9053-7b5a1c79c1fc" + "93a04604-223e-45ac-b66b-bdc881fb3670" ], "Cache-Control": [ "no-cache" @@ -114,16 +120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14998" ], "x-ms-correlation-request-id": [ - "b36dffe8-d59c-4950-a012-6ef1bbddd696" + "cefb9573-1477-48a2-857c-0af83b87a2d0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20170427T180326Z:b36dffe8-d59c-4950-a012-6ef1bbddd696" + "WESTUS2:20180111T214846Z:cefb9573-1477-48a2-857c-0af83b87a2d0" ], "Date": [ - "Thu, 27 Apr 2017 18:03:26 GMT" + "Thu, 11 Jan 2018 21:48:46 GMT" ] }, "StatusCode": 200 @@ -131,6 +137,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" + "SubscriptionId": "5393f919-a68a-43d0-9063-4b2bda6bffdf" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index ec7125603b436..6630cf0f38bc3 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "757e0ac5-2c00-4eee-bee6-61eae90feea8" + "2bf84122-6fdf-4eff-b3e4-d59cfb96dbc9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "321" @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fc414ea-410e-4600-9f7c-71bc36416f3f_131358074010838993" + "9fc414ea-410e-4600-9f7c-71bc36416f3f_131595074805181720" ], "x-ms-request-id": [ - "49942392-e4ad-43fc-ba58-30d5c3a44c71" + "b4dfd988-79fc-409f-a123-c9085033a303" ], "Cache-Control": [ "no-cache" @@ -53,22 +53,22 @@ "14999" ], "x-ms-correlation-request-id": [ - "d7417bae-c22e-4a22-b8e0-01889fffac1c" + "1c537796-72a2-48b7-b168-c18f095ae052" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183535Z:d7417bae-c22e-4a22-b8e0-01889fffac1c" + "UKSOUTH:20180118T031216Z:1c537796-72a2-48b7-b168-c18f095ae052" ], "Date": [ - "Thu, 27 Jul 2017 18:35:34 GMT" + "Thu, 18 Jan 2018 03:12:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:35:35Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:12:16Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -77,19 +77,19 @@ "99" ], "x-ms-client-request-id": [ - "25cf2f8d-eeb8-4099-8071-3c90935b54d7" + "d33b49fa-fdbf-48b6-beed-a3e428b3b2b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118\",\r\n \"name\": \"crptestar7118\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:35:35Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333\",\r\n \"name\": \"crptestar8333\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:12:16Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "234" @@ -107,13 +107,13 @@ "1199" ], "x-ms-request-id": [ - "d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "0079cb22-e066-4cd9-b9a3-a656064759c6" ], "x-ms-correlation-request-id": [ - "d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "0079cb22-e066-4cd9-b9a3-a656064759c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183538Z:d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "UKSOUTH:20180118T031219Z:0079cb22-e066-4cd9-b9a3-a656064759c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,16 +122,16 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:35:38 GMT" + "Thu, 18 Jan 2018 03:12:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:36:24Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:13:06Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -140,19 +140,19 @@ "99" ], "x-ms-client-request-id": [ - "32e1917e-3ab9-4e56-8a54-9186864ab18b" + "e0eba26d-bd3d-4ffe-8309-953446cb819e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118\",\r\n \"name\": \"crptestar7118\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:36:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333\",\r\n \"name\": \"crptestar8333\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:13:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "234" @@ -170,13 +170,13 @@ "1198" ], "x-ms-request-id": [ - "dccf778e-e09e-4d19-8729-c9ce39879c32" + "35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "x-ms-correlation-request-id": [ - "dccf778e-e09e-4d19-8729-c9ce39879c32" + "35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183625Z:dccf778e-e09e-4d19-8729-c9ce39879c32" + "UKSOUTH:20180118T031307Z:35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,14 +185,14 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:24 GMT" + "Thu, 18 Jan 2018 03:13:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIxNjg3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXI0OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -203,15 +203,15 @@ "95" ], "x-ms-client-request-id": [ - "d088b3b3-0863-40ce-b94f-6aacad8d0b5d" + "a7efee82-e184-4f01-865a-c3fe5b0e31cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -220,6 +220,9 @@ "Content-Length": [ "0" ], + "Content-Type": [ + "application/json" + ], "Expires": [ "-1" ], @@ -229,54 +232,53 @@ "Retry-After": [ "17" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "341f631b-21a3-4e8e-82a0-f585208415fe" - ], - "Cache-Control": [ - "no-cache" + "da9c15ee-63c6-4078-958e-c4e65789911e" ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Storage/operations/42ea5cce-66fa-4e26-846c-ea99b90b3ac2?monitor=true&api-version=2015-06-15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "341f631b-21a3-4e8e-82a0-f585208415fe" + "69afd349-2700-4632-9d69-44541c68ab19" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183542Z:341f631b-21a3-4e8e-82a0-f585208415fe" + "UKSOUTH:20180118T031225Z:69afd349-2700-4632-9d69-44541c68ab19" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:35:41 GMT" + "Thu, 18 Jan 2018 03:12:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c15ee-63c6-4078-958e-c4e65789911e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Storage/operations/42ea5cce-66fa-4e26-846c-ea99b90b3ac2?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQyZWE1Y2NlLTY2ZmEtNGUyNi04NDZjLWVhOTliOTBiM2FjMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c15ee-63c6-4078-958e-c4e65789911e?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZGE5YzE1ZWUtNjNjNi00MDc4LTk1OGUtYzRlNjU3ODk5MTFlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "72" + "95" ], "Content-Type": [ "application/json" @@ -288,56 +290,55 @@ "no-cache" ], "x-ms-request-id": [ - "4cadd47f-d57f-428c-be64-b47fa1a39e7f" - ], - "Cache-Control": [ - "no-cache" + "2a355176-f26b-4c56-a81e-b907855fe114" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-correlation-request-id": [ - "4cadd47f-d57f-428c-be64-b47fa1a39e7f" + "c4fb6dd2-3a95-48cc-b092-2c01f7deb332" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183612Z:4cadd47f-d57f-428c-be64-b47fa1a39e7f" + "UKSOUTH:20180118T031255Z:c4fb6dd2-3a95-48cc-b092-2c01f7deb332" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:12 GMT" + "Thu, 18 Jan 2018 03:12:55 GMT" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44796252-ba89-403e-876d-ab8b123f9067" + "2f4b7043-87e8-4148-b3e6-7b71e4b58f68" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar1687\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-07-27T18:35:41.9669325Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar1687.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar1687.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar1687.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar1687.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905\",\r\n \"name\": \"crptestar4905\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-18T03:12:23.6943066Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar4905.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar4905.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar4905.table.core.windows.net/\",\r\n \"file\": \"https://crptestar4905.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "753" + "744" ], "Content-Type": [ "application/json" @@ -349,56 +350,55 @@ "no-cache" ], "x-ms-request-id": [ - "ded0ae69-e383-4e61-9580-7fd9aff8022f" - ], - "Cache-Control": [ - "no-cache" + "aeea9021-c52b-4df9-9c93-5691e5ee162e" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14998" ], "x-ms-correlation-request-id": [ - "ded0ae69-e383-4e61-9580-7fd9aff8022f" + "3f61703d-27e0-48ac-9017-94a2d72e2bc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183622Z:ded0ae69-e383-4e61-9580-7fd9aff8022f" + "UKSOUTH:20180118T031305Z:3f61703d-27e0-48ac-9017-94a2d72e2bc9" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:22 GMT" + "Thu, 18 Jan 2018 03:13:05 GMT" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIxNjg3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXI0OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6caa4d65-1109-45d8-b74c-c406888bf9d1" + "d67f7906-fcfa-487c-9fa1-ed10e5687494" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar1687\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-07-27T18:35:41.9669325Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar1687.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar1687.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar1687.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar1687.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905\",\r\n \"name\": \"crptestar4905\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-18T03:12:23.6943066Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar4905.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar4905.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar4905.table.core.windows.net/\",\r\n \"file\": \"https://crptestar4905.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "741" + "732" ], "Content-Type": [ "application/json" @@ -410,140 +410,37 @@ "no-cache" ], "x-ms-request-id": [ - "6a4251c8-bb01-4fd6-a0e9-e334c268ec47" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "6a4251c8-bb01-4fd6-a0e9-e334c268ec47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183622Z:6a4251c8-bb01-4fd6-a0e9-e334c268ec47" + "1a73c6ee-2b25-4616-8cca-437402710409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Thu, 27 Jul 2017 18:36:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f29c809-3c31-4450-875e-f84d3cf65112" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f6da6ac4-3655-4204-9377-557ba2f0ee95" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "f6da6ac4-3655-4204-9377-557ba2f0ee95" + "8bf25595-8af0-427c-bdc1-a57364c58273" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183623Z:f6da6ac4-3655-4204-9377-557ba2f0ee95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "UKSOUTH:20180118T031306Z:8bf25595-8af0-427c-bdc1-a57364c58273" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:23 GMT" - ] - }, - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7bff310-7c60-47c1-9902-09b39c67b585" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "x-ms-correlation-request-id": [ - "67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183624Z:67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Thu, 18 Jan 2018 03:13:05 GMT" ], - "Date": [ - "Thu, 27 Jul 2017 18:36:24 GMT" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -552,19 +449,19 @@ "207" ], "x-ms-client-request-id": [ - "5dfb3a7f-00e4-4331-8044-6fa485c3a895" + "dfa1d41d-6db0-42fe-bc87-3d65888a346d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"c511bab5-c345-4ec5-bcdc-3a942d472395\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"4a7e7439-1df2-4801-be39-34a41866d31d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "711" @@ -582,10 +479,10 @@ "3" ], "x-ms-request-id": [ - "7ef47d93-7ced-46d7-8c20-6ad162d9d856" + "30af545b-0536-447d-9d54-fb41ec09f323" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/7ef47d93-7ced-46d7-8c20-6ad162d9d856?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/30af545b-0536-447d-9d54-fb41ec09f323?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,30 +495,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "168c9479-3be4-462a-8c57-caa7df6c7706" + "cb9d1de2-3e0a-4c13-ba55-e0683542bd8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183631Z:168c9479-3be4-462a-8c57-caa7df6c7706" + "UKSOUTH:20180118T031314Z:cb9d1de2-3e0a-4c13-ba55-e0683542bd8b" ], "Date": [ - "Thu, 27 Jul 2017 18:36:31 GMT" + "Thu, 18 Jan 2018 03:13:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/7ef47d93-7ced-46d7-8c20-6ad162d9d856?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlZjQ3ZDkzLTdjZWQtNDZkNy04YzIwLTZhZDE2MmQ5ZDg1Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/30af545b-0536-447d-9d54-fb41ec09f323?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYWY1NDViLTA1MzYtNDQ3ZC05ZDU0LWZiNDFlYzA5ZjMyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -640,7 +537,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d7d2b55-72c8-4c25-8399-1a74e4fc460f" + "2dfded2d-38d9-42c3-89d0-d8e0c8cec7ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,31 +553,31 @@ "14999" ], "x-ms-correlation-request-id": [ - "4baea2d9-2a0e-4257-b78c-e6f308a98278" + "0bd7cb78-59e7-483d-9f00-bfeed21a0b16" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:4baea2d9-2a0e-4257-b78c-e6f308a98278" + "UKSOUTH:20180118T031345Z:0bd7cb78-59e7-483d-9f00-bfeed21a0b16" ], "Date": [ - "Thu, 27 Jul 2017 18:37:01 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "712" @@ -695,7 +592,7 @@ "no-cache" ], "x-ms-request-id": [ - "c0955f53-cb80-46f5-9a36-25a030474ce3" + "5a4a5df1-240c-4637-b092-cc870234c4a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -704,7 +601,7 @@ "no-cache" ], "ETag": [ - "W/\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\"" + "W/\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -714,37 +611,37 @@ "14998" ], "x-ms-correlation-request-id": [ - "55af7473-bca0-4181-ac5b-fb49f9c30467" + "e88d9788-2520-4cf9-ae51-fcb26522edb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:55af7473-bca0-4181-ac5b-fb49f9c30467" + "UKSOUTH:20180118T031345Z:e88d9788-2520-4cf9-ae51-fcb26522edb9" ], "Date": [ - "Thu, 27 Jul 2017 18:37:02 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d64cb803-7e1f-4541-a39f-198de0c88cb1" + "e40fec46-f079-4e55-ae94-e063e2c854a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "712" @@ -759,7 +656,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a8aa797-e4c5-427f-aa8f-d6658b7e0aee" + "558e8650-ad04-4745-9095-3146a3cd3bf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +665,7 @@ "no-cache" ], "ETag": [ - "W/\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\"" + "W/\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -778,22 +675,22 @@ "14997" ], "x-ms-correlation-request-id": [ - "3df25860-26bc-4b3f-af32-63407c82fdc6" + "8e3af5bb-7b32-4c13-964e-085eeafb2c78" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:3df25860-26bc-4b3f-af32-63407c82fdc6" + "UKSOUTH:20180118T031345Z:8e3af5bb-7b32-4c13-964e-085eeafb2c78" ], "Date": [ - "Thu, 27 Jul 2017 18:37:02 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1622\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn6918\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -802,19 +699,19 @@ "402" ], "x-ms-client-request-id": [ - "51c4afe4-aadc-496c-ae43-3183fdb811c5" + "b30f6cde-04d5-49f4-a8c0-8f8f054e40e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn8809\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809\",\r\n \"etag\": \"W/\\\"4b5283c3-a99a-4970-92ba-742f8e44905f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4eecf33-aad3-4148-84fc-b38df5cce5f5\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"4b5283c3-a99a-4970-92ba-742f8e44905f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn6408\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408\",\r\n \"etag\": \"W/\\\"8cd56d34-ed34-4aed-a793-82d87a683d5b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d031c3f8-0368-4ae7-8faa-320b3aaabfdb\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"8cd56d34-ed34-4aed-a793-82d87a683d5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1078" @@ -832,10 +729,10 @@ "3" ], "x-ms-request-id": [ - "45bcf67b-ccb0-4c7f-8722-00154547e27f" + "5289134a-c174-4de6-97c4-ceb0493f2a6a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/45bcf67b-ccb0-4c7f-8722-00154547e27f?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/5289134a-c174-4de6-97c4-ceb0493f2a6a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -848,30 +745,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "02138050-5bde-4d82-8e5a-c5be5f344e08" + "86f2e503-0fd3-43cf-b264-b445a0198027" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183705Z:02138050-5bde-4d82-8e5a-c5be5f344e08" + "UKSOUTH:20180118T031347Z:86f2e503-0fd3-43cf-b264-b445a0198027" ], "Date": [ - "Thu, 27 Jul 2017 18:37:05 GMT" + "Thu, 18 Jan 2018 03:13:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/45bcf67b-ccb0-4c7f-8722-00154547e27f?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ1YmNmNjdiLWNjYjAtNGM3Zi04NzIyLTAwMTU0NTQ3ZTI3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/5289134a-c174-4de6-97c4-ceb0493f2a6a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyODkxMzRhLWMxNzQtNGRlNi05N2M0LWNlYjA0OTNmMmE2YT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -890,7 +787,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef5e933f-3272-4f3b-9a76-51b0ffb4f490" + "6468fb72-b513-4870-a91a-bec36ce18d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,31 +803,31 @@ "14996" ], "x-ms-correlation-request-id": [ - "0db1fdf9-07a6-4b33-90ee-559bc214c648" + "96428410-5e75-4d1d-a321-fdf5263b7c43" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183736Z:0db1fdf9-07a6-4b33-90ee-559bc214c648" + "UKSOUTH:20180118T031418Z:96428410-5e75-4d1d-a321-fdf5263b7c43" ], "Date": [ - "Thu, 27 Jul 2017 18:37:35 GMT" + "Thu, 18 Jan 2018 03:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn8809\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4eecf33-aad3-4148-84fc-b38df5cce5f5\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn6408\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d031c3f8-0368-4ae7-8faa-320b3aaabfdb\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1080" @@ -945,7 +842,7 @@ "no-cache" ], "x-ms-request-id": [ - "879bcfbd-56e0-43bc-8b68-220746efac57" + "14e04e17-fdb4-4f24-b9eb-89d5a3556f97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +851,7 @@ "no-cache" ], "ETag": [ - "W/\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\"" + "W/\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -964,37 +861,37 @@ "14995" ], "x-ms-correlation-request-id": [ - "71fc571a-095b-4b1c-b7e0-d5a9df542527" + "0ea983be-6d45-4b7d-8e36-5e56f2baf72b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183736Z:71fc571a-095b-4b1c-b7e0-d5a9df542527" + "UKSOUTH:20180118T031419Z:0ea983be-6d45-4b7d-8e36-5e56f2baf72b" ], "Date": [ - "Thu, 27 Jul 2017 18:37:36 GMT" + "Thu, 18 Jan 2018 03:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDkvc3VibmV0cy9zbjE2MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDgvc3VibmV0cy9zbjY5MTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9984ab8a-c793-4e37-9bce-d313b48062e2" + "7b858a3a-0acd-4c1d-b7a5-82d9b2c85309" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "340" @@ -1009,7 +906,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b261687-86a0-4cd9-8a60-603986db341a" + "ae8df1a4-e081-4060-8a73-4b1ead029b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1018,7 +915,7 @@ "no-cache" ], "ETag": [ - "W/\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\"" + "W/\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1028,46 +925,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "da4cad7d-da7a-4d54-9f5e-d18dbc05bce9" + "05c8b587-9fbf-47b8-86dc-be2df9d1e157" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183737Z:da4cad7d-da7a-4d54-9f5e-d18dbc05bce9" + "UKSOUTH:20180118T031419Z:05c8b587-9fbf-47b8-86dc-be2df9d1e157" ], "Date": [ - "Thu, 27 Jul 2017 18:37:36 GMT" + "Thu, 18 Jan 2018 03:14:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n }\r\n },\r\n \"name\": \"ip582\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n }\r\n },\r\n \"name\": \"ip2095\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "706" + "707" ], "x-ms-client-request-id": [ - "10c3d771-c05e-4b2e-9b52-35f83404bcf2" + "0f589868-5115-4f07-ae00-904e1c1caa76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1079,10 +976,10 @@ "no-cache" ], "x-ms-request-id": [ - "b3350030-07ae-4e45-83c1-4146382660b9" + "53e53106-138a-430a-b9e1-3294bf6e5d36" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/b3350030-07ae-4e45-83c1-4146382660b9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/53e53106-138a-430a-b9e1-3294bf6e5d36?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,37 +992,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "0c503235-1cf2-4584-8ec4-f270b0835e8f" + "d089283b-587e-42b3-b413-32c606cd144a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:0c503235-1cf2-4584-8ec4-f270b0835e8f" + "UKSOUTH:20180118T031422Z:d089283b-587e-42b3-b413-32c606cd144a" ], "Date": [ - "Thu, 27 Jul 2017 18:37:39 GMT" + "Thu, 18 Jan 2018 03:14:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "5ba4d158-bc23-4a43-a78c-e1e8128c15b7" + "e3a6c720-c65a-4f33-a7db-17a222086349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1043,7 @@ "no-cache" ], "ETag": [ - "W/\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\"" + "W/\"15471045-1781-47ea-a5f8-3be496a700bd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1156,40 +1053,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "683bc952-fc44-4668-be93-211cbf3bb534" + "f086fbfd-0401-4e5c-8ea9-522b83fb9089" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:683bc952-fc44-4668-be93-211cbf3bb534" + "UKSOUTH:20180118T031422Z:f086fbfd-0401-4e5c-8ea9-522b83fb9089" ], "Date": [ - "Thu, 27 Jul 2017 18:37:39 GMT" + "Thu, 18 Jan 2018 03:14:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aec8578c-172c-492a-a762-eaa729541284" + "05d09a24-3268-4d4e-9bf5-d4aef35294ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9f096ef-5ef9-47b1-b87d-54c19a2d33cb" + "22b565bb-1eaf-4533-b952-9ec9687407b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1210,7 +1107,7 @@ "no-cache" ], "ETag": [ - "W/\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\"" + "W/\"15471045-1781-47ea-a5f8-3be496a700bd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1220,20 +1117,20 @@ "14992" ], "x-ms-correlation-request-id": [ - "fce6cd55-e177-4850-b3fc-0c700c7c91cf" + "fac7473c-92a1-44bc-9721-87522952ed5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:fce6cd55-e177-4850-b3fc-0c700c7c91cf" + "UKSOUTH:20180118T031422Z:fac7473c-92a1-44bc-9721-87522952ed5c" ], "Date": [ - "Thu, 27 Jul 2017 18:37:40 GMT" + "Thu, 18 Jan 2018 03:14:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzNjUxP2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MDY5P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { @@ -1244,19 +1141,19 @@ "229" ], "x-ms-client-request-id": [ - "763c33b8-41c9-4109-8e33-34f55668e564" + "ff727ae2-c9af-4f4c-a555-bcf1d5cfb4ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651\",\r\n \"name\": \"as3651\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069\",\r\n \"name\": \"as4069\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "444" @@ -1270,14 +1167,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "24c1f260-e36c-4b37-a20c-79a4daa333d0" + "551836ba-b4fc-476b-b492-c48bbfd9a9e7" ], "Cache-Control": [ "no-cache" @@ -1287,25 +1187,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "cc383b92-be9a-4aa4-9bf1-8816da97e166" + "87433bd4-bea7-462e-9382-73872a109d48" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183746Z:cc383b92-be9a-4aa4-9bf1-8816da97e166" + "UKSOUTH:20180118T031428Z:87433bd4-bea7-462e-9382-73872a109d48" ], "Date": [ - "Thu, 27 Jul 2017 18:37:45 GMT" + "Thu, 18 Jan 2018 03:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1314,19 +1214,19 @@ "1216" ], "x-ms-client-request-id": [ - "e7e899ca-bb2f-4e93-905c-f63d6d9c449b" + "281cd58b-2a1e-4cdb-8afe-30bf87c29616" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1617" @@ -1341,16 +1241,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "8468c57d-cfef-4b03-a802-3992156a8799" + "354ec66d-b027-4828-badb-d6111af9ad08" ], "Cache-Control": [ "no-cache" @@ -1360,37 +1263,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "ecfc81f8-df2b-4989-9bee-3cab52524e06" + "c9b82f1a-4c2a-4d49-a681-bb22f77d5cf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183749Z:ecfc81f8-df2b-4989-9bee-3cab52524e06" + "UKSOUTH:20180118T031430Z:c9b82f1a-4c2a-4d49-a681-bb22f77d5cf8" ], "Date": [ - "Thu, 27 Jul 2017 18:37:48 GMT" + "Thu, 18 Jan 2018 03:14:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,14 +1304,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11998,Microsoft.Compute/GetOperation30Min;23959" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "45c3af0b-86e3-4cff-9929-01d2cdc7ec0a" + "009cdac1-d663-416c-a5d7-c6e8daed740a" ], "Cache-Control": [ "no-cache" @@ -1418,37 +1324,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "a47c1318-602a-4cd3-bdcd-a755667dd5ae" + "1d9382c2-977d-4c9b-ae9d-c05b7b87d10f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183820Z:a47c1318-602a-4cd3-bdcd-a755667dd5ae" + "UKSOUTH:20180118T031501Z:1d9382c2-977d-4c9b-ae9d-c05b7b87d10f" ], "Date": [ - "Thu, 27 Jul 2017 18:38:19 GMT" + "Thu, 18 Jan 2018 03:15:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1459,14 +1365,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11995,Microsoft.Compute/GetOperation30Min;23956" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "f3fe947a-eb17-4880-89ae-565d9d0330bf" + "dfffed73-cfd5-4c38-8f76-f143bdfe6833" ], "Cache-Control": [ "no-cache" @@ -1476,37 +1385,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-correlation-request-id": [ - "a03ce3df-44af-41e2-84f5-839eff8deeef" + "d740d711-16a7-4d03-9e64-41247bffecc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183850Z:a03ce3df-44af-41e2-84f5-839eff8deeef" + "UKSOUTH:20180118T031533Z:d740d711-16a7-4d03-9e64-41247bffecc0" ], "Date": [ - "Thu, 27 Jul 2017 18:38:50 GMT" + "Thu, 18 Jan 2018 03:15:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1517,14 +1426,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11992,Microsoft.Compute/GetOperation30Min;23953" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "c6c55281-171b-4999-b5d1-772fdd354f6a" + "534da6b0-11b5-4c1a-a763-3309fb6b15fe" ], "Cache-Control": [ "no-cache" @@ -1534,37 +1446,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14989" ], "x-ms-correlation-request-id": [ - "848ead1c-44f2-4422-9356-314d0a6c0c9a" + "7252e289-9d87-48d6-b2ae-a92e433c65b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183920Z:848ead1c-44f2-4422-9356-314d0a6c0c9a" + "UKSOUTH:20180118T031609Z:7252e289-9d87-48d6-b2ae-a92e433c65b2" ], "Date": [ - "Thu, 27 Jul 2017 18:39:20 GMT" + "Thu, 18 Jan 2018 03:16:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,14 +1487,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11989,Microsoft.Compute/GetOperation30Min;23950" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "3564089f-7c1d-4adf-b827-543d08cbd5b4" + "872ea7fe-0726-42a6-82f0-b0cbcf9ed150" ], "Cache-Control": [ "no-cache" @@ -1592,37 +1507,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14988" ], "x-ms-correlation-request-id": [ - "decef3c6-2065-4e59-82b8-ca44281db963" + "a34d0cf2-f5bd-4f86-86ff-1c6f0625821e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183950Z:decef3c6-2065-4e59-82b8-ca44281db963" + "UKSOUTH:20180118T031643Z:a34d0cf2-f5bd-4f86-86ff-1c6f0625821e" ], "Date": [ - "Thu, 27 Jul 2017 18:39:50 GMT" + "Thu, 18 Jan 2018 03:16:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1633,14 +1548,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11986,Microsoft.Compute/GetOperation30Min;23947" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "44bcc51b-378a-48db-82d0-1ed31a747121" + "c4d8eb5f-28d5-406f-8c33-264fb3dad6d3" ], "Cache-Control": [ "no-cache" @@ -1650,37 +1568,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-correlation-request-id": [ - "baf241a8-33fb-4bb8-87dc-7eb78883af63" + "f5554b02-b8d1-4881-9921-cff5e84d93f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184021Z:baf241a8-33fb-4bb8-87dc-7eb78883af63" + "UKSOUTH:20180118T031718Z:f5554b02-b8d1-4881-9921-cff5e84d93f0" ], "Date": [ - "Thu, 27 Jul 2017 18:40:20 GMT" + "Thu, 18 Jan 2018 03:17:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1691,14 +1609,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11984,Microsoft.Compute/GetOperation30Min;23944" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "1f35ed02-f18f-41d5-9cf2-b6f33af6320c" + "45b80d9d-257d-4858-ac72-48d5e36b903b" ], "Cache-Control": [ "no-cache" @@ -1708,37 +1629,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "97717317-d3e9-4086-b494-bac97f481d64" + "750cf97c-f6b7-41ab-9e4a-ed02bd89f280" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184051Z:97717317-d3e9-4086-b494-bac97f481d64" + "UKSOUTH:20180118T031753Z:750cf97c-f6b7-41ab-9e4a-ed02bd89f280" ], "Date": [ - "Thu, 27 Jul 2017 18:40:50 GMT" + "Thu, 18 Jan 2018 03:17:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1749,14 +1670,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11984,Microsoft.Compute/GetOperation30Min;23941" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "ee8ab68a-d2a2-4bf6-aceb-99942703d11c" + "b9a7c71f-b3ec-4a7d-926d-a720c1df6808" ], "Cache-Control": [ "no-cache" @@ -1766,37 +1690,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "dc15c062-bf11-4774-bb64-4b8c2faf07b2" + "24ab92b9-d3c2-443b-9794-ff402ab6a728" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184121Z:dc15c062-bf11-4774-bb64-4b8c2faf07b2" + "UKSOUTH:20180118T031825Z:24ab92b9-d3c2-443b-9794-ff402ab6a728" ], "Date": [ - "Thu, 27 Jul 2017 18:41:21 GMT" + "Thu, 18 Jan 2018 03:18:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1807,14 +1731,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11983,Microsoft.Compute/GetOperation30Min;23938" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "79a597b2-8f59-4f42-b422-85313b525246" + "68f24f73-c9ae-4684-a462-e70a25a8c4b3" ], "Cache-Control": [ "no-cache" @@ -1824,37 +1751,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-correlation-request-id": [ - "455bb4f6-ace1-40a1-a22a-5266e098319a" + "18d6ac33-f65e-4c53-9db9-6feedc8e433a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184151Z:455bb4f6-ace1-40a1-a22a-5266e098319a" + "UKSOUTH:20180118T031858Z:18d6ac33-f65e-4c53-9db9-6feedc8e433a" ], "Date": [ - "Thu, 27 Jul 2017 18:41:51 GMT" + "Thu, 18 Jan 2018 03:18:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1865,14 +1792,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11983,Microsoft.Compute/GetOperation30Min;23935" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "0a13cd88-1ddf-45f8-9859-6b25b6889c95" + "813bf847-9a09-4668-b6a2-9233b1347a29" ], "Cache-Control": [ "no-cache" @@ -1882,37 +1812,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14983" ], "x-ms-correlation-request-id": [ - "e17bd09e-1dfd-4db0-938b-800ce7b783f3" + "b5d86195-e184-4bcb-9e70-1afb97aec669" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184221Z:e17bd09e-1dfd-4db0-938b-800ce7b783f3" + "UKSOUTH:20180118T031934Z:b5d86195-e184-4bcb-9e70-1afb97aec669" ], "Date": [ - "Thu, 27 Jul 2017 18:42:21 GMT" + "Thu, 18 Jan 2018 03:19:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,14 +1853,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11986,Microsoft.Compute/GetOperation30Min;23940" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "d2dc751c-94be-4df8-bafe-0340ac228b76" + "145b7abf-3832-4326-b81b-edcb1c1174e3" ], "Cache-Control": [ "no-cache" @@ -1943,34 +1876,34 @@ "14990" ], "x-ms-correlation-request-id": [ - "20cdd3a0-efe8-4b3a-ba20-9f6071b2aff6" + "4132a19b-0523-40e3-be73-42f170ab96c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184252Z:20cdd3a0-efe8-4b3a-ba20-9f6071b2aff6" + "UKSOUTH:20180118T032008Z:4132a19b-0523-40e3-be73-42f170ab96c3" ], "Date": [ - "Thu, 27 Jul 2017 18:42:51 GMT" + "Thu, 18 Jan 2018 03:20:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1981,14 +1914,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11985,Microsoft.Compute/GetOperation30Min;23937" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "9274e630-9000-4e90-a80a-cba8a878516c" + "cdb6ac34-77b9-4389-afe7-a350432f0dc5" ], "Cache-Control": [ "no-cache" @@ -2001,34 +1937,34 @@ "14989" ], "x-ms-correlation-request-id": [ - "e9c484e7-700b-4d31-9867-8bc0525017cf" + "c307d0f5-508e-4fa2-805f-06008f194c60" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184322Z:e9c484e7-700b-4d31-9867-8bc0525017cf" + "UKSOUTH:20180118T032039Z:c307d0f5-508e-4fa2-805f-06008f194c60" ], "Date": [ - "Thu, 27 Jul 2017 18:43:21 GMT" + "Thu, 18 Jan 2018 03:20:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"endTime\": \"2018-01-17T19:20:53.2153927-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2039,14 +1975,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11985,Microsoft.Compute/GetOperation30Min;23934" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "c063ebcc-c44a-4b9a-b803-c9b9e60cf432" + "5df4d07c-6cc7-46d3-94d9-5d2e0231f6bb" ], "Cache-Control": [ "no-cache" @@ -2059,34 +1998,34 @@ "14988" ], "x-ms-correlation-request-id": [ - "72c11de4-3f2c-4e02-9122-c2c037ede3a7" + "92770d33-0ecd-4fe8-8c65-2055271a1070" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184352Z:72c11de4-3f2c-4e02-9122-c2c037ede3a7" + "UKSOUTH:20180118T032110Z:92770d33-0ecd-4fe8-8c65-2055271a1070" ], "Date": [ - "Thu, 27 Jul 2017 18:43:51 GMT" + "Thu, 18 Jan 2018 03:21:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,14 +2036,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4798,Microsoft.Compute/LowCostGet30Min;38385" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "7922c8ca-0761-43c2-a90b-e1113b880a3a" + "078dc269-d836-4fe3-b034-3eca52cf94ac" ], "Cache-Control": [ "no-cache" @@ -2117,34 +2059,40 @@ "14987" ], "x-ms-correlation-request-id": [ - "2b6fb288-8a29-436f-bd89-af6908fbc513" + "ddefbf7a-c6a8-4c73-8d5a-1190e54c274e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184422Z:2b6fb288-8a29-436f-bd89-af6908fbc513" + "UKSOUTH:20180118T032119Z:ddefbf7a-c6a8-4c73-8d5a-1190e54c274e" ], "Date": [ - "Thu, 27 Jul 2017 18:44:22 GMT" + "Thu, 18 Jan 2018 03:21:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aebf6b24-ad91-44ec-aac7-5cf5ce35a1ef" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,14 +2103,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4795,Microsoft.Compute/LowCostGet30Min;38382" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "848b5e8a-929e-4234-b2be-557fb0ff9b5f" + "c32f1c93-d11a-4b53-92a8-8ff9decfa065" ], "Cache-Control": [ "no-cache" @@ -2175,34 +2126,40 @@ "14986" ], "x-ms-correlation-request-id": [ - "f4d67bf0-22bd-4ebd-8fe6-829c55ffa2fd" + "f10afe4b-18e3-4e4c-89c6-afecc7e8bc2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184453Z:f4d67bf0-22bd-4ebd-8fe6-829c55ffa2fd" + "UKSOUTH:20180118T032131Z:f10afe4b-18e3-4e4c-89c6-afecc7e8bc2b" ], "Date": [ - "Thu, 27 Jul 2017 18:44:52 GMT" + "Thu, 18 Jan 2018 03:21:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a11cb5a-9aa9-4da6-9e3b-d2e20a33e31a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.845\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and waiting for network issue to be resolved.\",\r\n \"time\": \"2018-01-17T19:26:04-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:14:29.9702986-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"sg1prdapp07\",\r\n \"fabricTenantName\": \"9fba52ae-3bc1-4560-90ad-474c5df20a37\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:20:53.184134-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "3146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2213,14 +2170,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4795,Microsoft.Compute/LowCostGet30Min;38380" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "afa7dfb1-d770-4f8d-a8a9-e7fc6491007a" + "db338a2f-2bb2-42ba-a088-f8f0f95730ec" ], "Cache-Control": [ "no-cache" @@ -2230,37 +2190,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14999" ], "x-ms-correlation-request-id": [ - "1c4e5ab5-c69e-43d2-8341-c6eab9d4fb79" + "e6cc5a68-58c7-4bfe-adf7-2d786ff031df" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184523Z:1c4e5ab5-c69e-43d2-8341-c6eab9d4fb79" + "UKSOUTH:20180118T032632Z:e6cc5a68-58c7-4bfe-adf7-2d786ff031df" ], "Date": [ - "Thu, 27 Jul 2017 18:45:22 GMT" + "Thu, 18 Jan 2018 03:26:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDIvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5853dd12-2352-434d-a021-6199be193f15" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.845\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and waiting for network issue to be resolved.\",\r\n \"time\": \"2018-01-17T19:26:04-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:14:29.9702986-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"sg1prdapp07\",\r\n \"fabricTenantName\": \"9fba52ae-3bc1-4560-90ad-474c5df20a37\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:20:53.184134-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2271,14 +2237,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4799,Microsoft.Compute/GetInstanceView30Min;23999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "9afa7ea9-6515-45c0-99c6-c4b8465f992a" + "12baa3e1-2e7d-4671-b628-a82e8181f519" ], "Cache-Control": [ "no-cache" @@ -2288,37 +2257,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14998" ], "x-ms-correlation-request-id": [ - "350ce9e7-f054-418f-b4a0-8d7b5b60f73e" + "c8a7a747-309e-4511-b50a-d805f611d705" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184553Z:350ce9e7-f054-418f-b4a0-8d7b5b60f73e" + "UKSOUTH:20180118T032644Z:c8a7a747-309e-4511-b50a-d805f611d705" ], "Date": [ - "Thu, 27 Jul 2017 18:45:52 GMT" + "Thu, 18 Jan 2018 03:26:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b40fe4a9-bd60-4c7d-a5ae-9c888e7e76c0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2329,14 +2304,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;799" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "f729f292-cd01-4c1f-a2e8-1f3f238130cf" + "2bb6cfb9-6804-4431-8311-87d8b253b5e4" ], "Cache-Control": [ "no-cache" @@ -2346,37 +2324,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-correlation-request-id": [ - "c05a1e01-42a5-4008-bacf-ea4c1433428b" + "84e561a0-2061-4f0b-b667-3acb8c915f6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184623Z:c05a1e01-42a5-4008-bacf-ea4c1433428b" + "UKSOUTH:20180118T032644Z:84e561a0-2061-4f0b-b667-3acb8c915f6a" ], "Date": [ - "Thu, 27 Jul 2017 18:46:22 GMT" + "Thu, 18 Jan 2018 03:26:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDIvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c887f3ca-6795-4dfe-959a-542c70b9aa96" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"endTime\": \"2017-07-27T11:46:26.6692635-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "2621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2387,14 +2371,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4793,Microsoft.Compute/LowCostGet30Min;38378" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "4b1e22c7-b648-4e0e-b0ca-4dffbc0c4be2" + "111c4b16-6337-4ddb-87dc-0084aca73891" ], "Cache-Control": [ "no-cache" @@ -2404,37 +2391,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "8cdfa68d-b37b-4ace-9c09-e762c21bba90" + "38c6f544-c2a6-4d92-8722-bcecaf92c6bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184653Z:8cdfa68d-b37b-4ace-9c09-e762c21bba90" + "UKSOUTH:20180118T032645Z:38c6f544-c2a6-4d92-8722-bcecaf92c6bd" ], "Date": [ - "Thu, 27 Jul 2017 18:46:52 GMT" + "Thu, 18 Jan 2018 03:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MDY5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b76d36e4-6445-4948-8a68-a01ad69c5221" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1618" + "2621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2445,14 +2438,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4792,Microsoft.Compute/LowCostGet30Min;38377" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "4b930171-cc8a-4612-8925-7aa729cd853b" + "47c87b5f-3d03-404e-9274-dff13ace066d" ], "Cache-Control": [ "no-cache" @@ -2462,46 +2458,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-correlation-request-id": [ - "705ce5c9-7ea2-4878-a704-2d3401b6aeb8" + "12397107-c461-4175-a926-1f2923d90620" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184654Z:705ce5c9-7ea2-4878-a704-2d3401b6aeb8" + "UKSOUTH:20180118T032645Z:12397107-c461-4175-a926-1f2923d90620" ], "Date": [ - "Thu, 27 Jul 2017 18:46:54 GMT" + "Thu, 18 Jan 2018 03:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b703a08-71d0-4762-b1d7-9f595efab92d" + "a3565d5c-877a-4c81-8fcc-373c6f3af15b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1618" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2509,954 +2502,64 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "cd86ce8d-28d7-4fa1-822c-5d9b0d6447bd" - ], - "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": [ - "c73dcbe3-9933-4679-a7ed-772c07c3ddc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184654Z:c73dcbe3-9933-4679-a7ed-772c07c3ddc1" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "918eb6f4-596d-4672-9e79-9a522a694678" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:46:56-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:37:50.4486907-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:46:26.6536322-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2817" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "1d7a3f0b-ac58-4984-9395-db7210a13cdf" - ], - "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": [ - "432d5dde-4f38-4296-a3ce-52531aa98236" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:432d5dde-4f38-4296-a3ce-52531aa98236" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDgvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d45e33c-9358-48f6-9870-b7ed8ceca26b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:46:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:37:50.4486907-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:46:26.6536322-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1012" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "94a7fb42-453a-4775-a5f1-4dcc9f5f1f6e" - ], - "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": [ - "bcdb7ca4-b950-4abc-a682-04f8c581f058" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:bcdb7ca4-b950-4abc-a682-04f8c581f058" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "42283084-73cc-4d64-8191-4863d7aa92c4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1835" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "ef68501b-5335-4757-bc02-e70d43ee912d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "d78487e7-06ea-4d8c-80f4-868cd45ce887" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:d78487e7-06ea-4d8c-80f4-868cd45ce887" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDgvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dd221bae-c5ef-4267-b086-0c2ce13820bd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "8824" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e0a467d5-b636-4472-9e02-eea3f7f2e772" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "3bef6892-fcde-4a66-8b1f-e44792e50f27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:3bef6892-fcde-4a66-8b1f-e44792e50f27" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzNjUxL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6992355a-7882-42a2-b9e9-3152aac059cb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "8824" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "96730abe-a17e-4d15-9c65-32d9d926bcc9" - ], - "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": [ - "c5deda62-5821-4927-b9f3-68e71bbe76a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184656Z:c5deda62-5821-4927-b9f3-68e71bbe76a5" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a7a6478e-cab3-4adb-a7cd-8455987b11ce" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "81fd460b-5284-41d8-bad5-5be8451b1607" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "36f77dfc-72f1-4c65-85d6-ccc28defb522" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184657Z:36f77dfc-72f1-4c65-85d6-ccc28defb522" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:57 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "893cfb01-ce6f-49a0-9242-585f3efd4191" - ], - "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": [ - "5bf668a9-f6d6-4235-99df-d563ea79b872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184727Z:5bf668a9-f6d6-4235-99df-d563ea79b872" - ], - "Date": [ - "Thu, 27 Jul 2017 18:47:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e33e7e60-0a98-422a-93a6-56b732dcec3f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "229e4e93-31e2-445a-b4ca-a684767ab6ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184757Z:229e4e93-31e2-445a-b4ca-a684767ab6ef" - ], - "Date": [ - "Thu, 27 Jul 2017 18:47:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "487bc54b-5b0b-4dd9-b9de-04eadfac646e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "593a383c-f3b0-408d-b71a-a0253ee648bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184828Z:593a383c-f3b0-408d-b71a-a0253ee648bc" - ], - "Date": [ - "Thu, 27 Jul 2017 18:48:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"endTime\": \"2017-07-27T11:48:39.8834265-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "57acfab1-6900-45a8-a258-fede0b7ae4f3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "a2197183-2240-4143-9b5a-f215403251b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184858Z:a2197183-2240-4143-9b5a-f215403251b1" - ], - "Date": [ - "Thu, 27 Jul 2017 18:48:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d7eeadf-5e46-471c-94cb-e65af7f45d38" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "x-ms-correlation-request-id": [ - "ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T184902Z:ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:49:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "x-ms-correlation-request-id": [ - "ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T184932Z:ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:49:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "x-ms-correlation-request-id": [ - "a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185003Z:a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:50:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "x-ms-correlation-request-id": [ - "9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185033Z:9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "x-ms-correlation-request-id": [ + "560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20180118T032648Z:560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:50:32 GMT" + "Thu, 18 Jan 2018 03:26:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MzMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "x-ms-correlation-request-id": [ - "b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185103Z:b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:51:02 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar7118", - "crptestar1687", - "as3651" + "crptestar8333", + "crptestar4905", + "as4069" ], "CreatePublicIP": [ - "pip9114", - "dn3940" + "pip6925", + "dn9588" ], "CreateVNET": [ - "vn8809", - "sn1622" + "vn6408", + "sn6918" ], "CreateNIC": [ - "nic6632", - "ip582" + "nic7306", + "ip2095" ], "CreateDefaultVMInput": [ - "crptestar1712", - "crptestar5655", - "crptestar6419", - "vm5208", - "Microsoft.Compute/virtualMachines7957" + "crptestar1456", + "crptestar6434", + "crptestar8917", + "vm1642", + "Microsoft.Compute/virtualMachines9481" ] }, "Variables": { - "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" + "SubscriptionId": "73084a9e-e740-4c7d-8c11-6b3c0ec486b1" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index cda318aeeab08..a55318b09fdc9 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b66b35d3-9241-4875-93fd-c57a95653bc8" + "76089641-d2e3-4f0f-9d2b-f4028e49e819" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "321" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fc414ea-410e-4600-9f7c-71bc36416f3f_131358074010838993" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_131593116433733188" ], "x-ms-request-id": [ - "ff3bde5b-df36-497b-8ad8-ce493b2793aa" + "2a467787-b8cc-4c54-ac14-3c3513b88768" ], "Cache-Control": [ "no-cache" @@ -50,49 +50,49 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "fdc0ce75-c694-461e-8e3e-fd30928e8f49" + "bba230c9-6bbe-483d-a7ab-55fb1c029f61" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182248Z:fdc0ce75-c694-461e-8e3e-fd30928e8f49" + "UKSOUTH:20180118T073227Z:bba230c9-6bbe-483d-a7ab-55fb1c029f61" ], "Date": [ - "Thu, 27 Jul 2017 18:22:47 GMT" + "Thu, 18 Jan 2018 07:32:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1177?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjExNzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar6050?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYwNTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar1177\": \"2017-07-27 18:22:48Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6050\": \"2018-01-18 07:32:27Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "93" ], "x-ms-client-request-id": [ - "31f50119-294a-4c8c-9fc1-050370f84cef" + "3abfeed4-d1ae-4674-8213-fc95224b9884" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177\",\r\n \"name\": \"crptestar1177\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar1177\": \"2017-07-27 18:22:48Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050\",\r\n \"name\": \"crptestar6050\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6050\": \"2018-01-18 07:32:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -104,16 +104,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "b799846d-b891-4635-bc15-463a79e296f6" + "837ce701-9188-4d89-98e6-3734419791f9" ], "x-ms-correlation-request-id": [ - "b799846d-b891-4635-bc15-463a79e296f6" + "837ce701-9188-4d89-98e6-3734419791f9" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182251Z:b799846d-b891-4635-bc15-463a79e296f6" + "UKSOUTH:20180118T073230Z:837ce701-9188-4d89-98e6-3734419791f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,40 +122,40 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:22:51 GMT" + "Thu, 18 Jan 2018 07:32:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "205" + "201" ], "x-ms-client-request-id": [ - "6af82580-2481-4da2-83b3-c72ebe616989" + "ac02768e-a6b7-4541-aa1f-a0841a55ea7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"975cda00-689d-4391-bd5a-f685fa92cec5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8edfe756-7109-429f-9589-ac0c21f13061\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "707" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,10 +170,10 @@ "3" ], "x-ms-request-id": [ - "d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb" + "95829183-2955-4a48-a1a8-329be781e387" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/95829183-2955-4a48-a1a8-329be781e387?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,30 +186,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "78011d69-248d-4d59-8596-a90001cf66bf" + "802e5570-907b-4fd3-a097-11a28dca2908" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182258Z:78011d69-248d-4d59-8596-a90001cf66bf" + "UKSOUTH:20180118T073235Z:802e5570-907b-4fd3-a097-11a28dca2908" ], "Date": [ - "Thu, 27 Jul 2017 18:22:57 GMT" + "Thu, 18 Jan 2018 07:32:34 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QzYmUwOWQ3LTNiZGYtNGU1My04ZWE2LTkwYzNmMTczYTNjYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/95829183-2955-4a48-a1a8-329be781e387?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk1ODI5MTgzLTI5NTUtNGE0OC1hMWE4LTMyOWJlNzgxZTM4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -228,7 +228,7 @@ "no-cache" ], "x-ms-request-id": [ - "248564d5-3b44-426b-84b5-22c36d17ab62" + "429b52ea-fd46-48df-bf93-4505daa7135c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,34 +244,34 @@ "14999" ], "x-ms-correlation-request-id": [ - "3569016a-3d0a-4332-9352-847cf22856a4" + "3f2e696c-c749-415f-9ea0-835528684e81" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:3569016a-3d0a-4332-9352-847cf22856a4" + "UKSOUTH:20180118T073305Z:3f2e696c-c749-415f-9ea0-835528684e81" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8eacc045-904d-48fe-82d2-6297968cf355\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "134217b3-20fd-4079-97d6-cf9262c25543" + "22aff644-d55a-46a5-9593-0b679c3bc217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,7 +292,7 @@ "no-cache" ], "ETag": [ - "W/\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\"" + "W/\"8eacc045-904d-48fe-82d2-6297968cf355\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -302,40 +302,40 @@ "14998" ], "x-ms-correlation-request-id": [ - "865a6d15-70f7-421b-9b69-650e5797f522" + "852ff640-dd12-4ce9-8e3f-d1267ffe8313" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:865a6d15-70f7-421b-9b69-650e5797f522" + "UKSOUTH:20180118T073305Z:852ff640-dd12-4ce9-8e3f-d1267ffe8313" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "172ab02d-0940-40fc-ba1e-0a46df5e47f3" + "acc8ddf5-c4e0-4c74-99a5-2028a541b356" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8eacc045-904d-48fe-82d2-6297968cf355\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -347,7 +347,7 @@ "no-cache" ], "x-ms-request-id": [ - "296fb994-c857-425e-a4d8-db3de51db5b4" + "1d05974b-5d09-4c1b-a820-dc14c1a7abf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -356,7 +356,7 @@ "no-cache" ], "ETag": [ - "W/\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\"" + "W/\"8eacc045-904d-48fe-82d2-6297968cf355\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -366,46 +366,46 @@ "14997" ], "x-ms-correlation-request-id": [ - "fa7d05ab-3ee5-44c4-9404-cff27091e1ba" + "524a0b91-f09b-48d2-9395-2f0deb2fe204" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:fa7d05ab-3ee5-44c4-9404-cff27091e1ba" + "UKSOUTH:20180118T073306Z:524a0b91-f09b-48d2-9395-2f0deb2fe204" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2924\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn9415\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "299" + "293" ], "x-ms-client-request-id": [ - "13991c8b-c35e-43c7-a364-652c2af9293f" + "0b043968-e20f-425a-ad8b-7720c5656467" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7350\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350\",\r\n \"etag\": \"W/\\\"dbc143bf-e072-4ffc-bea6-1a89969a0268\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"66a333c9-db4e-4b3a-bc84-fb64e5d83feb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"dbc143bf-e072-4ffc-bea6-1a89969a0268\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2208\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208\",\r\n \"etag\": \"W/\\\"9dc7200b-9320-419d-abfd-a62230321ce5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b836679-75e4-4530-adea-3ec7e70d74ba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"9dc7200b-9320-419d-abfd-a62230321ce5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "975" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "3" ], "x-ms-request-id": [ - "85d73a7a-2a55-4701-9869-cb2af7cc7e12" + "bdbc99b0-f092-4e29-bbe3-b570241ee9a0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/85d73a7a-2a55-4701-9869-cb2af7cc7e12?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bdbc99b0-f092-4e29-bbe3-b570241ee9a0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,30 +436,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "d75f10c0-d960-4860-8ca2-c82e52090a28" + "bfa6514c-68fc-41d1-b0d6-fcf7d205f7e8" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182332Z:d75f10c0-d960-4860-8ca2-c82e52090a28" + "UKSOUTH:20180118T073307Z:bfa6514c-68fc-41d1-b0d6-fcf7d205f7e8" ], "Date": [ - "Thu, 27 Jul 2017 18:23:31 GMT" + "Thu, 18 Jan 2018 07:33:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/85d73a7a-2a55-4701-9869-cb2af7cc7e12?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1ZDczYTdhLTJhNTUtNDcwMS05ODY5LWNiMmFmN2NjN2UxMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bdbc99b0-f092-4e29-bbe3-b570241ee9a0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYmM5OWIwLWYwOTItNGUyOS1iYmUzLWI1NzAyNDFlZTlhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -478,7 +478,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7f2c05a-6915-45d0-937c-17d41cb22f3d" + "f43f9b20-c6ab-4e56-b645-df257d4f4722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,34 +494,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "42fe69b2-8c56-44f7-9e07-0b8f5f6594ea" + "95f7dd5f-5764-4b23-ba3a-511dd1e422b6" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:42fe69b2-8c56-44f7-9e07-0b8f5f6594ea" + "UKSOUTH:20180118T073338Z:95f7dd5f-5764-4b23-ba3a-511dd1e422b6" ], "Date": [ - "Thu, 27 Jul 2017 18:24:02 GMT" + "Thu, 18 Jan 2018 07:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7350\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"66a333c9-db4e-4b3a-bc84-fb64e5d83feb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2208\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b836679-75e4-4530-adea-3ec7e70d74ba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "977" + "971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -533,7 +533,7 @@ "no-cache" ], "x-ms-request-id": [ - "68c3df43-d45e-4397-b4bb-c8d7e2c2dd60" + "e47214aa-4177-4156-8cdc-8ae3547a06a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "no-cache" ], "ETag": [ - "W/\"90fdfdb9-1ff3-4394-980e-600792a550a7\"" + "W/\"7edf2d31-8645-490d-9dd0-30b18a03598a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -552,37 +552,37 @@ "14995" ], "x-ms-correlation-request-id": [ - "ec080462-7bf7-4255-8744-82d1e4c244f8" + "e6f98474-cdfc-4b29-873b-1daa80ecbaca" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:ec080462-7bf7-4255-8744-82d1e4c244f8" + "UKSOUTH:20180118T073338Z:e6f98474-cdfc-4b29-873b-1daa80ecbaca" ], "Date": [ - "Thu, 27 Jul 2017 18:24:03 GMT" + "Thu, 18 Jan 2018 07:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTAvc3VibmV0cy9zbjI5MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDgvc3VibmV0cy9zbjk0MTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c74e3c7-7afa-45f0-bd03-778f27921624" + "1f944e9f-fe4f-418e-a75f-6ab42bca8b13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "340" @@ -597,7 +597,7 @@ "no-cache" ], "x-ms-request-id": [ - "4a34ffa2-ec3f-4446-8e04-d7f229f76424" + "9408a388-799a-4236-90ab-50b639788f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "no-cache" ], "ETag": [ - "W/\"90fdfdb9-1ff3-4394-980e-600792a550a7\"" + "W/\"7edf2d31-8645-490d-9dd0-30b18a03598a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -616,46 +616,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "81333911-05f4-493b-8927-2628373d8fbc" + "8bab12a8-a260-4b81-9018-53f660aa354f" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:81333911-05f4-493b-8927-2628373d8fbc" + "UKSOUTH:20180118T073339Z:8bab12a8-a260-4b81-9018-53f660aa354f" ], "Date": [ - "Thu, 27 Jul 2017 18:24:03 GMT" + "Thu, 18 Jan 2018 07:33:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n }\r\n },\r\n \"name\": \"ip2080\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n }\r\n },\r\n \"name\": \"ip95\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "707" + "699" ], "x-ms-client-request-id": [ - "6a75ffe0-8752-480e-99ca-1cfe9c30ae9a" + "29b2fae9-8af9-47ad-9ecd-0e103bff3e0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,10 +667,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e65caa2-0b29-4f3c-9373-60feec22a49b" + "1f3c440c-08b6-455c-b5a7-341d3bb1989f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/5e65caa2-0b29-4f3c-9373-60feec22a49b?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/1f3c440c-08b6-455c-b5a7-341d3bb1989f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -683,37 +683,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "ad66bc35-6816-46d2-b9c0-eadd3abdfc66" + "2161da95-0237-40ef-ab1f-d8a2305cc4bd" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182406Z:ad66bc35-6816-46d2-b9c0-eadd3abdfc66" + "UKSOUTH:20180118T073341Z:2161da95-0237-40ef-ab1f-d8a2305cc4bd" ], "Date": [ - "Thu, 27 Jul 2017 18:24:06 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +725,7 @@ "no-cache" ], "x-ms-request-id": [ - "18204457-1854-46b5-b6e6-b1c4218af105" + "b8eb3038-4afc-4fc8-a336-35a8405169fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,7 +734,7 @@ "no-cache" ], "ETag": [ - "W/\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\"" + "W/\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -744,40 +744,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "2850afc4-9677-46a6-8d6a-7b403b0e4369" + "96f8f4db-3587-47ce-b194-3a733d41dc80" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182407Z:2850afc4-9677-46a6-8d6a-7b403b0e4369" + "UKSOUTH:20180118T073341Z:96f8f4db-3587-47ce-b194-3a733d41dc80" ], "Date": [ - "Thu, 27 Jul 2017 18:24:06 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e38de04-fe14-476e-832f-8c2cf981cca1" + "84598f6d-ebf3-4bcc-a3c4-94ac055860ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "8bc197eb-4f62-46fd-a985-fa412f7a5374" + "d92687cb-f99b-45af-ae4c-f29417d54f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "no-cache" ], "ETag": [ - "W/\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\"" + "W/\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -808,46 +808,46 @@ "14992" ], "x-ms-correlation-request-id": [ - "13fe2a15-8fcc-4f8c-abe1-ab91e22ae11a" + "0a8a1b13-aa2f-4ed8-9833-5804b1a78b7f" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182407Z:13fe2a15-8fcc-4f8c-abe1-ab91e22ae11a" + "UKSOUTH:20180118T073341Z:0a8a1b13-aa2f-4ed8-9833-5804b1a78b7f" ], "Date": [ - "Thu, 27 Jul 2017 18:24:07 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzODIxP2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMyNjA2P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "229" + "223" ], "x-ms-client-request-id": [ - "888b715e-be13-49f8-9c2d-cdbdad1ccb1c" + "6dcf804e-381c-453a-a162-93a576c9ba19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821\",\r\n \"name\": \"as3821\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606\",\r\n \"name\": \"as2606\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "444" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,14 +858,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;548,Microsoft.Compute/PutVM30Min;2732" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "dc71571f-f4ec-449d-83b6-6f6300182223" + "ff139c41-7183-4766-9f54-51ec8ac15b5b" ], "Cache-Control": [ "no-cache" @@ -878,46 +881,46 @@ "1199" ], "x-ms-correlation-request-id": [ - "8b4bf3d9-38f2-49d5-96d1-1cbb7d1ceb3a" + "c08870a3-4a2a-44d1-8b4e-360db75daa50" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182412Z:8b4bf3d9-38f2-49d5-96d1-1cbb7d1ceb3a" + "UKSOUTH:20180118T073343Z:c08870a3-4a2a-44d1-8b4e-360db75daa50" ], "Date": [ - "Thu, 27 Jul 2017 18:24:12 GMT" + "Thu, 18 Jan 2018 07:33:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"createOption\": \"FromImage\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1348" + "1514" ], "x-ms-client-request-id": [ - "83d4325b-73d0-41dd-823c-66f1324a0be7" + "a1df7503-1262-4eb0-b4b2-4e3bb365dd70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1811" + "1891" ], "Content-Type": [ "application/json; charset=utf-8" @@ -929,16 +932,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;547,Microsoft.Compute/PutVM30Min;2731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "2635d031-ed32-4aef-ae38-79fdb403cc72" + "b2bf295f-18b5-4f42-ac9a-8361a61862d7" ], "Cache-Control": [ "no-cache" @@ -951,205 +957,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "26aac67c-11c8-4682-b663-01e640d8589b" + "39f40f40-b0c4-4d5d-909d-5ee7070c4dd3" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182415Z:26aac67c-11c8-4682-b663-01e640d8589b" + "UKSOUTH:20180118T073345Z:39f40f40-b0c4-4d5d-909d-5ee7070c4dd3" ], "Date": [ - "Thu, 27 Jul 2017 18:24:15 GMT" + "Thu, 18 Jan 2018 07:33:45 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "35da0cb3-c017-4d12-b954-ae6009149f25" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "82b43ea8-cf76-4bd0-b5e3-e669f1741667" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182446Z:82b43ea8-cf76-4bd0-b5e3-e669f1741667" - ], - "Date": [ - "Thu, 27 Jul 2017 18:24:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e5bda2d5-b3b9-470d-bc4c-033d6dc5f538" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "1ee5a7f3-0144-4d7b-8123-ba50a0032afa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182516Z:1ee5a7f3-0144-4d7b-8123-ba50a0032afa" - ], - "Date": [ - "Thu, 27 Jul 2017 18:25:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "477daa19-8cc5-4a3f-96ee-d30b4618fd40" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "35f72d25-f474-4c88-9f82-b69a725a1336" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182546Z:35f72d25-f474-4c88-9f82-b69a725a1336" - ], - "Date": [ - "Thu, 27 Jul 2017 18:25:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1163,72 +995,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "7d05c2b3-74d2-4dad-a82f-727dd06b19ad" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "cd487d35-52ba-4f99-ae00-bf1d9d4c5efd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182616Z:cd487d35-52ba-4f99-ae00-bf1d9d4c5efd" - ], - "Date": [ - "Thu, 27 Jul 2017 18:26:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11967,Microsoft.Compute/GetOperation30Min;23462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "806ac52f-30fb-4910-b83a-e78375a8a4e9" + "cf8e335e-cb80-43b5-aa3c-e295bd11ee01" ], "Cache-Control": [ "no-cache" @@ -1241,31 +1018,31 @@ "14994" ], "x-ms-correlation-request-id": [ - "e5b8dcc3-2cf5-4058-a47c-10fc005402a7" + "295f4380-db1d-4f35-a50b-38bfddfbb305" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182646Z:e5b8dcc3-2cf5-4058-a47c-10fc005402a7" + "UKSOUTH:20180118T073415Z:295f4380-db1d-4f35-a50b-38bfddfbb305" ], "Date": [ - "Thu, 27 Jul 2017 18:26:46 GMT" + "Thu, 18 Jan 2018 07:34:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1279,14 +1056,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11956,Microsoft.Compute/GetOperation30Min;23451" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7928a477-195c-4819-9351-ed1ccdcf3b60" + "b29b0f60-2348-41a3-9478-8278b1bdc533" ], "Cache-Control": [ "no-cache" @@ -1299,31 +1079,31 @@ "14993" ], "x-ms-correlation-request-id": [ - "670d1520-ee46-4870-8e5a-730201d4aed2" + "05103138-a5f4-4e5d-8da7-aeeb2a775f73" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182717Z:670d1520-ee46-4870-8e5a-730201d4aed2" + "UKSOUTH:20180118T073446Z:05103138-a5f4-4e5d-8da7-aeeb2a775f73" ], "Date": [ - "Thu, 27 Jul 2017 18:27:16 GMT" + "Thu, 18 Jan 2018 07:34:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1337,14 +1117,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11949,Microsoft.Compute/GetOperation30Min;23645" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7e4b6966-2290-4d6d-9a17-a21ca98b4ae7" + "33be8c69-dc40-493e-92a3-bea3579cda45" ], "Cache-Control": [ "no-cache" @@ -1357,31 +1140,31 @@ "14992" ], "x-ms-correlation-request-id": [ - "0d286bcf-21e4-4aa4-bb2d-380391972189" + "8b9dee43-4980-48ea-aefe-fb89db3edb97" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182747Z:0d286bcf-21e4-4aa4-bb2d-380391972189" + "UKSOUTH:20180118T073519Z:8b9dee43-4980-48ea-aefe-fb89db3edb97" ], "Date": [ - "Thu, 27 Jul 2017 18:27:47 GMT" + "Thu, 18 Jan 2018 07:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1395,14 +1178,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11941,Microsoft.Compute/GetOperation30Min;23628" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "e252d473-69bd-4357-9717-f159d7704ff9" + "f5282e2a-8f10-4ead-bb1e-8dd27952f6fe" ], "Cache-Control": [ "no-cache" @@ -1415,31 +1201,31 @@ "14991" ], "x-ms-correlation-request-id": [ - "eeb0d7f5-6072-4848-8322-6cd67b70dba8" + "92b55df5-3867-40be-93c2-2b3ca75714cd" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182817Z:eeb0d7f5-6072-4848-8322-6cd67b70dba8" + "UKSOUTH:20180118T073555Z:92b55df5-3867-40be-93c2-2b3ca75714cd" ], "Date": [ - "Thu, 27 Jul 2017 18:28:17 GMT" + "Thu, 18 Jan 2018 07:35:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1453,14 +1239,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11934,Microsoft.Compute/GetOperation30Min;23612" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "20adaaf5-04ca-40ed-82c7-52b24dc8109a" + "8a1363c5-092f-4ce7-9a4c-2e8af3a92b3f" ], "Cache-Control": [ "no-cache" @@ -1473,31 +1262,31 @@ "14990" ], "x-ms-correlation-request-id": [ - "ba2693d9-e2f9-4406-a6e7-bc01388b287c" + "7288c0f6-d23a-4fc1-9831-c49cc5c622c5" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182847Z:ba2693d9-e2f9-4406-a6e7-bc01388b287c" + "UKSOUTH:20180118T073625Z:7288c0f6-d23a-4fc1-9831-c49cc5c622c5" ], "Date": [ - "Thu, 27 Jul 2017 18:28:47 GMT" + "Thu, 18 Jan 2018 07:36:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1511,14 +1300,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11927,Microsoft.Compute/GetOperation30Min;23599" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "962ad01c-6ec9-44df-b0a4-e5f73a98411a" + "c536e5b6-1c64-459d-88c0-6ee945787908" ], "Cache-Control": [ "no-cache" @@ -1531,31 +1323,31 @@ "14989" ], "x-ms-correlation-request-id": [ - "8c4f2a31-59a7-452d-a0d6-2bae5c2f47f6" + "71f73bea-b9d1-4368-9650-93d7f71da7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182918Z:8c4f2a31-59a7-452d-a0d6-2bae5c2f47f6" + "UKSOUTH:20180118T073656Z:71f73bea-b9d1-4368-9650-93d7f71da7d0" ], "Date": [ - "Thu, 27 Jul 2017 18:29:17 GMT" + "Thu, 18 Jan 2018 07:36:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1569,14 +1361,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11927,Microsoft.Compute/GetOperation30Min;23588" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7f109b43-014b-4f45-b772-ae33342fb77b" + "487b79be-579a-4aa0-9cd6-12d62672580b" ], "Cache-Control": [ "no-cache" @@ -1589,31 +1384,31 @@ "14988" ], "x-ms-correlation-request-id": [ - "aba51f02-363b-47ec-bc40-fa257273ab84" + "567b6a37-3b45-4561-bfc2-2a905bb56cf7" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182948Z:aba51f02-363b-47ec-bc40-fa257273ab84" + "UKSOUTH:20180118T073728Z:567b6a37-3b45-4561-bfc2-2a905bb56cf7" ], "Date": [ - "Thu, 27 Jul 2017 18:29:47 GMT" + "Thu, 18 Jan 2018 07:37:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1627,14 +1422,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11924,Microsoft.Compute/GetOperation30Min;23574" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "59f285ac-70f9-44b9-a439-20f4af054891" + "e8e8f76d-2bd2-4df6-b2e7-ad4fc2513028" ], "Cache-Control": [ "no-cache" @@ -1647,31 +1445,31 @@ "14987" ], "x-ms-correlation-request-id": [ - "d8501291-6824-40b2-bc31-bfabf30f6852" + "87a01459-2a2b-49ac-894e-f05e75338d6c" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183018Z:d8501291-6824-40b2-bc31-bfabf30f6852" + "UKSOUTH:20180118T073759Z:87a01459-2a2b-49ac-894e-f05e75338d6c" ], "Date": [ - "Thu, 27 Jul 2017 18:30:17 GMT" + "Thu, 18 Jan 2018 07:37:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1685,14 +1483,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11918,Microsoft.Compute/GetOperation30Min;23555" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "536be289-581b-4f8b-a461-68e02859f5f9" + "3fa12bfb-c4ce-425f-b51f-dcf309d7a409" ], "Cache-Control": [ "no-cache" @@ -1705,31 +1506,31 @@ "14986" ], "x-ms-correlation-request-id": [ - "cf1e4dd0-f4fe-4f22-822c-d8653b7b09d3" + "4f77b7d6-51ca-4533-ae6f-20a23962f98d" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183048Z:cf1e4dd0-f4fe-4f22-822c-d8653b7b09d3" + "UKSOUTH:20180118T073829Z:4f77b7d6-51ca-4533-ae6f-20a23962f98d" ], "Date": [ - "Thu, 27 Jul 2017 18:30:48 GMT" + "Thu, 18 Jan 2018 07:38:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"endTime\": \"2017-07-27T11:30:50.9360452-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"endTime\": \"2018-01-17T23:38:29.6358778-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -1743,14 +1544,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11912,Microsoft.Compute/GetOperation30Min;23537" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "885a7896-f156-4343-9018-7e3422fed780" + "ff069b40-9326-4a29-a894-a039cf4f8ba0" ], "Cache-Control": [ "no-cache" @@ -1763,34 +1567,34 @@ "14985" ], "x-ms-correlation-request-id": [ - "fb2ae90e-bafa-4275-98bb-c56edf4f23b4" + "cb1ee498-a621-4afc-8ee8-b6f5dce4249e" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183118Z:fb2ae90e-bafa-4275-98bb-c56edf4f23b4" + "UKSOUTH:20180118T073859Z:cb1ee498-a621-4afc-8ee8-b6f5dce4249e" ], "Date": [ - "Thu, 27 Jul 2017 18:31:18 GMT" + "Thu, 18 Jan 2018 07:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2231" + "2311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1801,14 +1605,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4787,Microsoft.Compute/LowCostGet30Min;38238" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "6446379b-4fec-465e-8b27-4ec3dbcd35eb" + "346ad12c-6ca3-4972-b6c8-35975624dbea" ], "Cache-Control": [ "no-cache" @@ -1821,40 +1628,40 @@ "14984" ], "x-ms-correlation-request-id": [ - "89607cd2-c674-4dec-9a7e-6e434aa48b22" + "7bf429fd-a305-4f1f-99d7-f5c3dc17d985" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:89607cd2-c674-4dec-9a7e-6e434aa48b22" + "UKSOUTH:20180118T073903Z:7bf429fd-a305-4f1f-99d7-f5c3dc17d985" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:39:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "323b5963-3b95-49df-806d-c1d5c999472f" + "5bd02b5c-32ee-406b-8702-322082cbad99" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2231" + "2311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1865,14 +1672,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4788,Microsoft.Compute/LowCostGet30Min;38237" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "653e3d60-bb00-415b-8e39-56248f136307" + "02ef4ef1-41dd-490a-9d24-58ce1a836fa9" ], "Cache-Control": [ "no-cache" @@ -1885,40 +1695,40 @@ "14983" ], "x-ms-correlation-request-id": [ - "f7059330-d68a-46dc-b0cd-bd17b68bf836" + "7299f54b-bb2e-431f-afa5-9fb0d0d70108" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:f7059330-d68a-46dc-b0cd-bd17b68bf836" + "UKSOUTH:20180118T073915Z:7299f54b-bb2e-431f-afa5-9fb0d0d70108" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:39:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab98666b-23ef-47ce-b1ee-2bcc7270d45b" + "6025c65f-ffdd-4127-81da-9544e71a376b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:31:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:30:50.9204239-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-17T23:44:15-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bz6prdapp15\",\r\n \"fabricTenantName\": \"531d0c1b-5ab4-4bfc-8800-83b0e5ef3667\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:38:29.6358778-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3792" + "4162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,14 +1739,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4770,Microsoft.Compute/LowCostGet30Min;38208" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "6edfff78-86e4-4a59-befd-0a317a7968ce" + "aca02cc6-ffd7-4f65-a246-c76071d77c79" ], "Cache-Control": [ "no-cache" @@ -1946,43 +1759,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14999" ], "x-ms-correlation-request-id": [ - "ccb8f0c9-928c-4fd3-b808-64ba377b3524" + "599a8490-4b93-4781-bd5c-2611b1a266ad" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:ccb8f0c9-928c-4fd3-b808-64ba377b3524" + "UKSOUTH:20180118T074416Z:599a8490-4b93-4781-bd5c-2611b1a266ad" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:44:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjEvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDgvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45becf9-9093-4218-b555-b2f1857299f7" + "90143ddb-6795-4ef6-90e1-a4ba884b4789" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:31:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:30:50.9204239-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-17T23:44:15-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bz6prdapp15\",\r\n \"fabricTenantName\": \"531d0c1b-5ab4-4bfc-8800-83b0e5ef3667\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:38:29.6358778-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1330" + "1592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1993,14 +1806,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4791,Microsoft.Compute/GetInstanceView30Min;23952" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "fc380bae-0717-4803-9ed7-fba926da4359" + "058537e7-e6a8-47f2-8940-1c3247216bf4" ], "Cache-Control": [ "no-cache" @@ -2010,43 +1826,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14998" ], "x-ms-correlation-request-id": [ - "20f1ef2a-b76c-4790-b3cc-755248151763" + "25cb4faa-20cf-4080-a26f-03f52455755a" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:20f1ef2a-b76c-4790-b3cc-755248151763" + "UKSOUTH:20180118T074428Z:25cb4faa-20cf-4080-a26f-03f52455755a" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d26b141-6d6f-40bd-a99f-51e0417e9fa2" + "6605ed03-297a-4828-870a-85a38104ebd6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2504" + "2592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2057,14 +1873,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;798" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b3130dc2-3ff2-4c43-86ff-b5b608cfada3" + "155b4286-0107-4938-a591-2621c0e3e85d" ], "Cache-Control": [ "no-cache" @@ -2074,43 +1893,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14997" ], "x-ms-correlation-request-id": [ - "f5cd9584-2294-4fe5-ac20-6f9ee2ebf5c5" + "332e6156-3439-419b-aa11-e1a16f61bdc8" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:f5cd9584-2294-4fe5-ac20-6f9ee2ebf5c5" + "UKSOUTH:20180118T074428Z:332e6156-3439-419b-aa11-e1a16f61bdc8" ], "Date": [ - "Thu, 27 Jul 2017 18:31:20 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDgvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0513ea26-e6cf-4db9-96f6-2a5ec103c992" + "a2f85d30-810d-4004-ad35-7df8d2fb9f16" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2014" + "1720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2121,14 +1940,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4768,Microsoft.Compute/LowCostGet30Min;38206" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "5484a10b-2589-4460-8ac0-8831bb951110" + "7eae3283-ea66-4701-b00b-955044968be5" ], "Cache-Control": [ "no-cache" @@ -2138,43 +1960,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14996" ], "x-ms-correlation-request-id": [ - "01047159-b8d6-4568-bf27-db58cebbff03" + "ed2dbd79-820e-4648-be7a-f0472b949b18" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:01047159-b8d6-4568-bf27-db58cebbff03" + "UKSOUTH:20180118T074428Z:ed2dbd79-820e-4648-be7a-f0472b949b18" ], "Date": [ - "Thu, 27 Jul 2017 18:31:20 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzODIxL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMyNjA2L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160941a7-092e-4935-98c1-8e843a17fc5b" + "ca2843c7-2bf5-45ac-ab0b-9d346cd748a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2014" + "1720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2185,14 +2007,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4767,Microsoft.Compute/LowCostGet30Min;38205" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "ba739f28-b3f7-4a02-9fc2-dee0421759f7" + "77d7dadf-89ac-4389-8788-33a45869cfc5" ], "Cache-Control": [ "no-cache" @@ -2202,37 +2027,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14995" ], "x-ms-correlation-request-id": [ - "1a73e97f-e6f0-46ab-a23b-2c80f66911d6" + "8881d8b0-ff27-4d6c-a9e1-1b78501c443e" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183121Z:1a73e97f-e6f0-46ab-a23b-2c80f66911d6" + "UKSOUTH:20180118T074429Z:8881d8b0-ff27-4d6c-a9e1-1b78501c443e" ], "Date": [ - "Thu, 27 Jul 2017 18:31:21 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar6050?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYwNTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "091ee53a-d178-4b78-897c-955cb96770c8" + "e1275441-062c-4d7e-ac13-8c5ee47cf9ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, "ResponseBody": "", @@ -2246,573 +2071,64 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "a275f3f2-fed3-4fda-9c78-e74c58ffb7ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "0b6a1d43-009d-4c06-bf21-60979a7b0abf" ], "x-ms-correlation-request-id": [ - "860a7769-13d9-424f-9f6d-352c13d92837" + "0b6a1d43-009d-4c06-bf21-60979a7b0abf" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183122Z:860a7769-13d9-424f-9f6d-352c13d92837" + "UKSOUTH:20180118T074431Z:0b6a1d43-009d-4c06-bf21-60979a7b0abf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:31:21 GMT" + "Thu, 18 Jan 2018 07:44:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2MDUwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "58b0a6bc-6a7b-4e91-a67c-cfddaa56326b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "1f2fcbfe-6087-4a2e-922b-b1332875a9e2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183152Z:1f2fcbfe-6087-4a2e-922b-b1332875a9e2" - ], - "Date": [ - "Thu, 27 Jul 2017 18:31:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "73aa29cf-7b9f-4a20-814b-359733c53bc0" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "a6bdb829-ab03-447d-97d1-fa3bc81d7b74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183222Z:a6bdb829-ab03-447d-97d1-fa3bc81d7b74" - ], - "Date": [ - "Thu, 27 Jul 2017 18:32:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "1127a13c-bba3-4041-90fd-c31b7a42e383" - ], - "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": [ - "87ea4762-d331-44f5-a177-2e804900560c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183252Z:87ea4762-d331-44f5-a177-2e804900560c" - ], - "Date": [ - "Thu, 27 Jul 2017 18:32:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"endTime\": \"2017-07-27T11:33:14.536556-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "f87d6a1a-416e-4269-ac27-92c829e03555" - ], - "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": [ - "9aabf635-9ed4-42ae-b539-795b97849fd7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183323Z:9aabf635-9ed4-42ae-b539-795b97849fd7" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1177?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjExNzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6d13b68-0a80-4e0a-950d-b342b12612dc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "x-ms-correlation-request-id": [ - "972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183327Z:972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "x-ms-correlation-request-id": [ - "1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183357Z:1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "28625333-db75-472e-b1b9-94af66945763" - ], - "x-ms-correlation-request-id": [ - "28625333-db75-472e-b1b9-94af66945763" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183428Z:28625333-db75-472e-b1b9-94af66945763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:34:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "x-ms-correlation-request-id": [ - "3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183458Z:3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:34:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "x-ms-correlation-request-id": [ - "74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183528Z:74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:35:28 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar1177", - "crptestar6446", - "as3821" + "crptestar6050", + "crptestar4483", + "as2606" ], "CreatePublicIP": [ - "pip1906", - "dn28" + "pip4781", + "dn2907" ], "CreateVNET": [ - "vn7350", - "sn2924" + "vn2208", + "sn9415" ], "CreateNIC": [ - "nic817", - "ip2080" + "nic488", + "ip95" ], "CreateDefaultVMInput": [ - "crptestar1741", - "crptestar9228", - "crptestar6076", - "vm6561", - "Microsoft.Compute/virtualMachines9620" + "crptestar9888", + "crptestar6373", + "crptestar8606", + "vm1308", + "Microsoft.Compute/virtualMachines7914" ] }, "Variables": { "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json index 53a47edbb14fc..7b19de74264fd 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cd31f47-0c87-4750-a9c5-fbef27f3879f" + "ae629250-83cd-47b6-95f4-8e179b782987" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_131407183909564042" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_131593116433733188" ], "x-ms-request-id": [ - "c0d406e1-a500-4fd6-9bfe-344ab2a4b1a6" + "cc628886-da22-49cf-9bbf-ec7f55f270ad" ], "Cache-Control": [ "no-cache" @@ -53,22 +53,22 @@ "14999" ], "x-ms-correlation-request-id": [ - "62c091dc-e979-4f16-a0fe-36884ea6862a" + "f683447c-4f5e-4b29-befb-fac1ffd0802b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185110Z:62c091dc-e979-4f16-a0fe-36884ea6862a" + "UKSOUTH:20180118T075336Z:f683447c-4f5e-4b29-befb-fac1ffd0802b" ], "Date": [ - "Thu, 27 Jul 2017 18:51:10 GMT" + "Thu, 18 Jan 2018 07:53:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1693?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2OTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar2034?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjIwMzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1693\": \"2017-07-27 18:51:10Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2034\": \"2018-01-18 07:53:36Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -77,19 +77,19 @@ "93" ], "x-ms-client-request-id": [ - "c0edeaf3-aa04-4b1f-8ed2-ef5b27820aa6" + "7a90a364-5d22-4f42-86ce-8b88ccfac21e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693\",\r\n \"name\": \"crptestar1693\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1693\": \"2017-07-27 18:51:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034\",\r\n \"name\": \"crptestar2034\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2034\": \"2018-01-18 07:53:36Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "228" @@ -104,16 +104,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "86c503e7-3f84-46ef-afa6-1caead3a41df" + "0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "x-ms-correlation-request-id": [ - "86c503e7-3f84-46ef-afa6-1caead3a41df" + "0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185112Z:86c503e7-3f84-46ef-afa6-1caead3a41df" + "UKSOUTH:20180118T075338Z:0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,40 +122,40 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:51:11 GMT" + "Thu, 18 Jan 2018 07:53:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "201" + "200" ], "x-ms-client-request-id": [ - "d1e02a97-39bf-48c2-b871-5c96d2d7115b" + "694fefd7-0090-41b2-b209-dbcb5895c5b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"3b80c6a1-f348-4f9d-9656-6b0484e84ca1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"264427be-fc70-4359-b630-d8d5397956d2\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "699" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,10 +170,10 @@ "3" ], "x-ms-request-id": [ - "23abb3ba-23c4-42f6-a5bc-f5def1b670b2" + "21c8a669-a22f-4d59-83f1-ffc53811494b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/23abb3ba-23c4-42f6-a5bc-f5def1b670b2?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/21c8a669-a22f-4d59-83f1-ffc53811494b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,27 +189,27 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc5436c0-d4d9-4ee5-bfd7-0d5359c9dab4" + "1a31c6c9-534a-444b-8fff-d16384f57bcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185115Z:dc5436c0-d4d9-4ee5-bfd7-0d5359c9dab4" + "UKSOUTH:20180118T075343Z:1a31c6c9-534a-444b-8fff-d16384f57bcf" ], "Date": [ - "Thu, 27 Jul 2017 18:51:15 GMT" + "Thu, 18 Jan 2018 07:53:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/23abb3ba-23c4-42f6-a5bc-f5def1b670b2?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzIzYWJiM2JhLTIzYzQtNDJmNi1hNWJjLWY1ZGVmMWI2NzBiMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/21c8a669-a22f-4d59-83f1-ffc53811494b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzIxYzhhNjY5LWEyMmYtNGQ1OS04M2YxLWZmYzUzODExNDk0Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -228,7 +228,7 @@ "no-cache" ], "x-ms-request-id": [ - "4961ecd3-62f6-496e-a8a9-40fe1c80a034" + "407d17cb-962f-423c-a8eb-0bb4604dd49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,34 +244,34 @@ "14999" ], "x-ms-correlation-request-id": [ - "2cb4d13b-9ab5-4d19-8ed1-5365821319be" + "05f255a6-9519-4631-a923-df326b39204b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:2cb4d13b-9ab5-4d19-8ed1-5365821319be" + "UKSOUTH:20180118T075413Z:05f255a6-9519-4631-a923-df326b39204b" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"7b18d110-5ed3-4bdd-a342-f73e00375275\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"5b931733-4e61-4244-abb5-8e5929e6c805\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "700" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "9a0713a5-9642-4f0e-8619-caff63014df3" + "b38eab2b-31c3-46e6-ae0a-f8a64570a1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,7 +292,7 @@ "no-cache" ], "ETag": [ - "W/\"7b18d110-5ed3-4bdd-a342-f73e00375275\"" + "W/\"5b931733-4e61-4244-abb5-8e5929e6c805\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -302,40 +302,40 @@ "14998" ], "x-ms-correlation-request-id": [ - "f98e8bb8-0800-43e3-874d-73d6b77163bd" + "a1ded696-b1de-4d32-86de-b11616d70ed7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:f98e8bb8-0800-43e3-874d-73d6b77163bd" + "UKSOUTH:20180118T075414Z:a1ded696-b1de-4d32-86de-b11616d70ed7" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e94ea93-b96e-4d5b-aec9-36950a6a6026" + "b4faf803-4d88-45a8-8536-4ce272f6b434" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"7b18d110-5ed3-4bdd-a342-f73e00375275\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"5b931733-4e61-4244-abb5-8e5929e6c805\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "700" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -347,7 +347,7 @@ "no-cache" ], "x-ms-request-id": [ - "becd5484-c4ab-4f3f-b15f-53afdeb9c858" + "7587160f-0b71-4e15-bc26-84595fba6ac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -356,7 +356,7 @@ "no-cache" ], "ETag": [ - "W/\"7b18d110-5ed3-4bdd-a342-f73e00375275\"" + "W/\"5b931733-4e61-4244-abb5-8e5929e6c805\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -366,46 +366,46 @@ "14997" ], "x-ms-correlation-request-id": [ - "c77e3066-215b-4212-9b4f-0ef89cdfc64b" + "5db58b50-110d-4d78-8fed-5b3882c6f606" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:c77e3066-215b-4212-9b4f-0ef89cdfc64b" + "UKSOUTH:20180118T075414Z:5db58b50-110d-4d78-8fed-5b3882c6f606" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1399\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn952\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "292" ], "x-ms-client-request-id": [ - "943f2f9d-6a41-4f0a-939a-179426ac5055" + "fde30e0e-bfb8-4507-a9ce-4e50aa14e9b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn3964\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964\",\r\n \"etag\": \"W/\\\"0c0c8e62-f1b8-47b2-93a7-fabf9994a262\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4410765a-0c43-4246-898b-7fd5072c4872\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"0c0c8e62-f1b8-47b2-93a7-fabf9994a262\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn7060\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060\",\r\n \"etag\": \"W/\\\"d2501d38-cea9-42d1-9d62-e48dd65749c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ea73ed03-053a-4620-b016-3207bc2a8cd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"d2501d38-cea9-42d1-9d62-e48dd65749c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "969" + "967" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "3" ], "x-ms-request-id": [ - "fa2dc583-4bf7-438f-856d-40986e1f3a89" + "976eab8d-1474-41f1-93ca-d7fa1d24ac0f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/fa2dc583-4bf7-438f-856d-40986e1f3a89?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/976eab8d-1474-41f1-93ca-d7fa1d24ac0f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,27 +439,27 @@ "1198" ], "x-ms-correlation-request-id": [ - "66f28ba5-78ad-4727-a03e-2552bb9b7daf" + "2e8f76e1-4fb3-4c15-9d6a-b854201eea82" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185148Z:66f28ba5-78ad-4727-a03e-2552bb9b7daf" + "UKSOUTH:20180118T075415Z:2e8f76e1-4fb3-4c15-9d6a-b854201eea82" ], "Date": [ - "Thu, 27 Jul 2017 18:51:47 GMT" + "Thu, 18 Jan 2018 07:54:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/fa2dc583-4bf7-438f-856d-40986e1f3a89?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZhMmRjNTgzLTRiZjctNDM4Zi04NTZkLTQwOTg2ZTFmM2E4OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/976eab8d-1474-41f1-93ca-d7fa1d24ac0f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk3NmVhYjhkLTE0NzQtNDFmMS05M2NhLWQ3ZmExZDI0YWMwZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -478,7 +478,7 @@ "no-cache" ], "x-ms-request-id": [ - "e5f85813-0358-4ac3-878f-ef6c51339011" + "3a781244-52bb-480b-b909-eda8e5b9bcc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,34 +494,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "8819d3c4-ab7b-4a3c-b7ab-3e85ce4ce3a8" + "983bdb69-696c-4db4-8c20-0ba4cb13018d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:8819d3c4-ab7b-4a3c-b7ab-3e85ce4ce3a8" + "UKSOUTH:20180118T075446Z:983bdb69-696c-4db4-8c20-0ba4cb13018d" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn3964\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4410765a-0c43-4246-898b-7fd5072c4872\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn7060\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea73ed03-053a-4620-b016-3207bc2a8cd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "971" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -533,7 +533,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ba1aeb3-5835-45b2-ad13-f4f279670b4b" + "17187386-33a3-4912-82b7-43b26fd02940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "no-cache" ], "ETag": [ - "W/\"675dc2fd-d370-401a-b6eb-95fcc71fada8\"" + "W/\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -552,40 +552,40 @@ "14995" ], "x-ms-correlation-request-id": [ - "d1f83522-d11d-4f21-8a65-0c204ff9fdce" + "906541e0-8a10-4e5b-baf5-11cb291f980a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:d1f83522-d11d-4f21-8a65-0c204ff9fdce" + "UKSOUTH:20180118T075446Z:906541e0-8a10-4e5b-baf5-11cb291f980a" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQvc3VibmV0cy9zbjEzOTk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjAvc3VibmV0cy9zbjk1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26ea8ebc-df40-4f70-b97b-537cc39758b2" + "bd5c44fb-6d3c-4593-8424-390fdabe1a0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "340" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,7 +597,7 @@ "no-cache" ], "x-ms-request-id": [ - "4e112c76-a707-4839-b1f9-87b79ca4c339" + "4f9ca49e-e778-4292-8f36-c83b8faef20e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "no-cache" ], "ETag": [ - "W/\"675dc2fd-d370-401a-b6eb-95fcc71fada8\"" + "W/\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -616,46 +616,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "f85cdae2-254e-405f-aa13-0219e401fd91" + "3e2a48a9-dc01-48e7-9451-1b380f334161" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:f85cdae2-254e-405f-aa13-0219e401fd91" + "UKSOUTH:20180118T075446Z:3e2a48a9-dc01-48e7-9451-1b380f334161" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n }\r\n },\r\n \"name\": \"ip9012\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n }\r\n },\r\n \"name\": \"ip8046\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "701" + "699" ], "x-ms-client-request-id": [ - "7fab651c-f2e3-4b9e-bcee-6627b4ac78f6" + "2479a265-5eef-48f1-b5fe-01c115440070" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,10 +667,10 @@ "no-cache" ], "x-ms-request-id": [ - "f05318ac-d422-41d0-bc08-3b1bbe2100ec" + "bb040af0-382e-4033-81be-0dcbcf310d67" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/f05318ac-d422-41d0-bc08-3b1bbe2100ec?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bb040af0-382e-4033-81be-0dcbcf310d67?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -686,34 +686,34 @@ "1197" ], "x-ms-correlation-request-id": [ - "b6a67547-1c4c-49a3-bf98-a9858887715d" + "17f18cf7-d335-4302-8d24-f52168a3fc74" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:b6a67547-1c4c-49a3-bf98-a9858887715d" + "UKSOUTH:20180118T075448Z:17f18cf7-d335-4302-8d24-f52168a3fc74" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +725,7 @@ "no-cache" ], "x-ms-request-id": [ - "9bf036be-f62d-4b66-af52-832a118eb0a2" + "2f720cdb-6d52-4017-8021-12217a072bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,7 +734,7 @@ "no-cache" ], "ETag": [ - "W/\"a1442294-59d4-4427-809d-5d4ce28e2692\"" + "W/\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -744,40 +744,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "d1e16add-8fcf-48cc-b0de-172a55195d97" + "483cfa8c-2369-4371-8ddb-5bbd2591bd43" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:d1e16add-8fcf-48cc-b0de-172a55195d97" + "UKSOUTH:20180118T075449Z:483cfa8c-2369-4371-8ddb-5bbd2591bd43" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daffe6e1-18a7-44a9-8fbb-40cb7e0b238c" + "4629b0f7-249f-43ce-8233-0d74adc1883d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2bfb5de-b3e2-4801-b421-58363583f260" + "570b399d-1740-49f7-8314-9110db9077f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "no-cache" ], "ETag": [ - "W/\"a1442294-59d4-4427-809d-5d4ce28e2692\"" + "W/\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -808,20 +808,20 @@ "14992" ], "x-ms-correlation-request-id": [ - "91066d91-670f-49a6-802c-e9556e5f2dd9" + "9ee554f3-e88c-47cc-bb4e-107c52a50204" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:91066d91-670f-49a6-802c-e9556e5f2dd9" + "UKSOUTH:20180118T075449Z:9ee554f3-e88c-47cc-bb4e-107c52a50204" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxNzM5P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MTk/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { @@ -832,22 +832,22 @@ "223" ], "x-ms-client-request-id": [ - "e6dbb0ea-5bd1-4297-b0fd-90b72c0f8810" + "a1aa7cda-bb56-445a-ab0c-9fa402997e02" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739\",\r\n \"name\": \"as1739\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719\",\r\n \"name\": \"as719\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,14 +858,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;547,Microsoft.Compute/PutVM30Min;2730" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "2b9f83da-513b-4dfd-851d-a81c81b39b34" + "13947a5b-5226-4bd0-b101-543b866200fa" ], "Cache-Control": [ "no-cache" @@ -878,43 +881,43 @@ "1199" ], "x-ms-correlation-request-id": [ - "a9e4474a-d8fc-48da-b8a4-19cd6acfd5c0" + "869d48be-7c39-4399-8afb-1156e611a5ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185223Z:a9e4474a-d8fc-48da-b8a4-19cd6acfd5c0" + "UKSOUTH:20180118T075451Z:869d48be-7c39-4399-8afb-1156e611a5ee" ], "Date": [ - "Thu, 27 Jul 2017 18:52:22 GMT" + "Thu, 18 Jan 2018 07:54:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1193" + "1279" ], "x-ms-client-request-id": [ - "00698f62-91b8-4a15-bff8-9d72f96bd444" + "35852eff-1c97-4e87-ab7a-2984f009ef42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1656" @@ -929,16 +932,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;546,Microsoft.Compute/PutVM30Min;2729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "67d3f728-679e-4aab-a53a-5c52c4cf3496" + "8a159a4e-c571-4049-b846-6855e94b87f2" ], "Cache-Control": [ "no-cache" @@ -951,34 +957,34 @@ "1198" ], "x-ms-correlation-request-id": [ - "30f8e336-9db6-497a-8d2e-f3fe20a548df" + "77329f95-3f68-40ee-b2e8-8795c7822705" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185225Z:30f8e336-9db6-497a-8d2e-f3fe20a548df" + "UKSOUTH:20180118T075453Z:77329f95-3f68-40ee-b2e8-8795c7822705" ], "Date": [ - "Thu, 27 Jul 2017 18:52:24 GMT" + "Thu, 18 Jan 2018 07:54:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -989,14 +995,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11976,Microsoft.Compute/GetOperation30Min;23557" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "4106b064-d900-4892-be92-861d4907acd4" + "e45ea356-6727-4aa6-9e32-f834b116d9ee" ], "Cache-Control": [ "no-cache" @@ -1009,34 +1018,34 @@ "14998" ], "x-ms-correlation-request-id": [ - "d3862a7d-fdd3-41ba-b694-464565e6bf24" + "da280476-1ad4-42f9-9215-df41633a07ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185255Z:d3862a7d-fdd3-41ba-b694-464565e6bf24" + "UKSOUTH:20180118T075523Z:da280476-1ad4-42f9-9215-df41633a07ca" ], "Date": [ - "Thu, 27 Jul 2017 18:52:55 GMT" + "Thu, 18 Jan 2018 07:55:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,14 +1056,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11978,Microsoft.Compute/GetOperation30Min;23550" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b28566e5-5ed5-4ac4-9c1b-a1e2eafc8593" + "687709cd-82a7-438b-bfda-64449a30263b" ], "Cache-Control": [ "no-cache" @@ -1067,34 +1079,34 @@ "14997" ], "x-ms-correlation-request-id": [ - "be19fa63-d78c-4939-9537-9dd291b33c57" + "f2cac1b3-fd55-4daa-b773-9508c87b16f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185325Z:be19fa63-d78c-4939-9537-9dd291b33c57" + "UKSOUTH:20180118T075555Z:f2cac1b3-fd55-4daa-b773-9508c87b16f4" ], "Date": [ - "Thu, 27 Jul 2017 18:53:25 GMT" + "Thu, 18 Jan 2018 07:55:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1105,14 +1117,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11973,Microsoft.Compute/GetOperation30Min;23543" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b89ac62c-fe4f-43ca-9319-5024de381e1b" + "08d734a4-9abc-459e-a615-6c3860600117" ], "Cache-Control": [ "no-cache" @@ -1125,34 +1140,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "0f36ad39-4a66-47c7-a140-4aa97146ae86" + "1f9b7914-578d-4687-a8eb-cd5ebb0ffb2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185355Z:0f36ad39-4a66-47c7-a140-4aa97146ae86" + "UKSOUTH:20180118T075627Z:1f9b7914-578d-4687-a8eb-cd5ebb0ffb2e" ], "Date": [ - "Thu, 27 Jul 2017 18:53:55 GMT" + "Thu, 18 Jan 2018 07:56:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1163,14 +1178,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11965,Microsoft.Compute/GetOperation30Min;23533" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "c2fdf8df-3975-40b1-ba8f-9fbb5f0c1212" + "68ee6c66-5d92-4c2a-9bc5-0823479b3e73" ], "Cache-Control": [ "no-cache" @@ -1183,34 +1201,34 @@ "14995" ], "x-ms-correlation-request-id": [ - "fe1b47e9-1eac-48d9-b7f4-3377734daab9" + "75c2570d-f761-4c18-bf6e-ec774fa320a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185425Z:fe1b47e9-1eac-48d9-b7f4-3377734daab9" + "UKSOUTH:20180118T075703Z:75c2570d-f761-4c18-bf6e-ec774fa320a1" ], "Date": [ - "Thu, 27 Jul 2017 18:54:25 GMT" + "Thu, 18 Jan 2018 07:57:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,14 +1239,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11959,Microsoft.Compute/GetOperation30Min;23520" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "46c3c986-06c0-4502-84bc-7f378be5c208" + "19640a8e-f98d-4904-8a79-05e7670ff026" ], "Cache-Control": [ "no-cache" @@ -1241,34 +1262,34 @@ "14994" ], "x-ms-correlation-request-id": [ - "1e2a7c6e-d945-409d-aff1-19328a252281" + "049b3c18-70e9-486b-b1cc-fdd3c8d5d082" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185456Z:1e2a7c6e-d945-409d-aff1-19328a252281" + "UKSOUTH:20180118T075735Z:049b3c18-70e9-486b-b1cc-fdd3c8d5d082" ], "Date": [ - "Thu, 27 Jul 2017 18:54:56 GMT" + "Thu, 18 Jan 2018 07:57:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"endTime\": \"2018-01-17T23:58:03.7840357-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1279,72 +1300,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "6bd55425-b5e6-4048-8d52-92d8e3ae5b97" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "62132c37-9d72-43a4-84d7-21a0c53579e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185526Z:62132c37-9d72-43a4-84d7-21a0c53579e5" - ], - "Date": [ - "Thu, 27 Jul 2017 18:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"endTime\": \"2017-07-27T11:55:49.003335-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11955,Microsoft.Compute/GetOperation30Min;23509" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "32bdc5c8-6499-4b89-b3b0-88159c9abef1" + "ab0a53b6-a900-43f5-af86-8aa167bf9224" ], "Cache-Control": [ "no-cache" @@ -1354,34 +1320,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14993" ], "x-ms-correlation-request-id": [ - "14d5eca4-1bfb-4b0f-9d72-c24abaf76595" + "f16c0ab3-140d-4ce5-828d-bdfd3192672f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:14d5eca4-1bfb-4b0f-9d72-c24abaf76595" + "UKSOUTH:20180118T075807Z:f16c0ab3-140d-4ce5-828d-bdfd3192672f" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2076" @@ -1395,14 +1361,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4789,Microsoft.Compute/LowCostGet30Min;38257" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "c3b7acd7-b978-4566-9bfc-90af052de50b" + "c97097ee-98f3-441a-bd98-ec9236eb3f81" ], "Cache-Control": [ "no-cache" @@ -1412,40 +1381,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "15f039eb-2162-4d1f-a61c-9204186f6566" + "7e992291-467d-4023-999a-59e305f3733c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:15f039eb-2162-4d1f-a61c-9204186f6566" + "UKSOUTH:20180118T075807Z:7e992291-467d-4023-999a-59e305f3733c" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "addba0f5-c74e-41f1-b998-4225185732f3" + "b5642742-0c43-4bcb-b352-ec35e2e3b7ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2076" @@ -1459,14 +1428,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4788,Microsoft.Compute/LowCostGet30Min;38256" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "3b68d235-0d7b-4c69-88a8-6e010ae60ffd" + "59c39824-1172-419d-98f4-c579dbd6bfa6" ], "Cache-Control": [ "no-cache" @@ -1476,43 +1448,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "f87db58a-3282-40e6-a043-748a19afdc20" + "e09361d4-97b2-4e00-8d7f-f5238dc8c3ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:f87db58a-3282-40e6-a043-748a19afdc20" + "UKSOUTH:20180118T075819Z:e09361d4-97b2-4e00-8d7f-f5238dc8c3ff" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "060acdf2-67db-4f72-abe6-08b0fab2a1c9" + "55b202bd-7265-465e-8ae1-a547ec91f575" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:55:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:55:48.9877086-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-18T00:03:08-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bn6prdapp04\",\r\n \"fabricTenantName\": \"e00bb07b-5642-4516-8708-e20be0ab37ea\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:58:03.7683697-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3570" + "3860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1523,14 +1495,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4793,Microsoft.Compute/LowCostGet30Min;38247" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "054a2744-792c-4bc5-a469-591671dc1bc2" + "e9596bd5-796e-4812-8c97-7331d6fd90ae" ], "Cache-Control": [ "no-cache" @@ -1540,43 +1515,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14983" ], "x-ms-correlation-request-id": [ - "2d658e1b-f65a-439a-bff6-0e0d1c634009" + "b782e8d0-7217-45a6-93c2-6643bb0f961a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:2d658e1b-f65a-439a-bff6-0e0d1c634009" + "UKSOUTH:20180118T080321Z:b782e8d0-7217-45a6-93c2-6643bb0f961a" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTcvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDYvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "697294ea-7b81-4bf2-b281-6cbd48a2962a" + "7b175c3c-ccad-4d10-9e63-045e5d4fe443" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:55:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:55:48.9877086-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-18T00:03:08-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bn6prdapp04\",\r\n \"fabricTenantName\": \"e00bb07b-5642-4516-8708-e20be0ab37ea\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:58:03.7683697-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1271" + "1533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1587,14 +1562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4796,Microsoft.Compute/GetInstanceView30Min;23954" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "a9fc44e2-aca0-4745-894d-de7b81f11139" + "97da7c61-6812-483a-b9fd-24fc85368710" ], "Cache-Control": [ "no-cache" @@ -1604,40 +1582,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-correlation-request-id": [ - "7c53e78c-b3cb-4bbc-8a4f-40096a5db6a2" + "cea09528-3b33-4ee6-950c-23033ac9e2f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:7c53e78c-b3cb-4bbc-8a4f-40096a5db6a2" + "UKSOUTH:20180118T080332Z:cea09528-3b33-4ee6-950c-23033ac9e2f6" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a6ea91-1f2b-450a-8199-11599377e0ec" + "02eece79-4cea-4c77-821c-9ccbed251af2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2349" @@ -1651,14 +1629,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;798" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "27f2c9ca-6e13-47dc-bc6a-7b8e8294e7c7" + "d5eafb29-6107-4f9d-87a3-238bedf8eb42" ], "Cache-Control": [ "no-cache" @@ -1668,43 +1649,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14981" ], "x-ms-correlation-request-id": [ - "f8d22f0e-6852-41a1-a741-190046bc8e34" + "73298417-6f05-4984-931b-a9ff5f4bcaf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:f8d22f0e-6852-41a1-a741-190046bc8e34" + "UKSOUTH:20180118T080333Z:73298417-6f05-4984-931b-a9ff5f4bcaf5" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTcvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDYvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b9b4fbd-2baa-497d-be97-4531f2bf38ad" + "1eafdfc2-3389-44dc-a457-24ab3a94be45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "8824" + "6225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1715,14 +1696,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4792,Microsoft.Compute/LowCostGet30Min;38246" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "903fef43-59da-479b-910f-c73067b6097b" + "d5ea3ce6-fc33-439f-b3e2-98879152bf26" ], "Cache-Control": [ "no-cache" @@ -1732,43 +1716,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14980" ], "x-ms-correlation-request-id": [ - "bd9b4ef3-888b-4935-8723-9aac94f40575" + "3e92a2ee-2c96-4ad5-9032-c14f83143ea3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:bd9b4ef3-888b-4935-8723-9aac94f40575" + "UKSOUTH:20180118T080333Z:3e92a2ee-2c96-4ad5-9032-c14f83143ea3" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxNzM5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MTkvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f96f45cb-33fb-4e93-a619-c51ecec5633d" + "7d620a30-8741-49c6-8484-301e3250ad9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\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\": 4\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\": 8\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\": 16\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\": 32\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\": 8\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\": 16\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\": 32\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\": 64\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\": 8\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\": 16\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\": 32\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\": 64\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_GS1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 5765120,\r\n \"memoryInMB\": 262144,\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\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\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\": 8\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\": 16\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\": 32\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\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\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\": 4\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\": 8\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\": 16\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\": 32\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\": 8\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\": 16\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\": 32\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\": 64\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\": 8\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\": 16\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\": 32\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\": 64\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_GS1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\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\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\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\": 8\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\": 16\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\": 32\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\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "20146" + "31583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1779,14 +1763,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4791,Microsoft.Compute/LowCostGet30Min;38245" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "305fe737-399b-496d-9f02-71dbd2373ec5" + "5aa25a14-7d71-4098-861d-f847e887e8e8" ], "Cache-Control": [ "no-cache" @@ -1796,37 +1783,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14979" ], "x-ms-correlation-request-id": [ - "81c112a2-638b-401f-af0b-22a467a9b002" + "a47ee856-5c09-4ae6-ada5-b81dab96b743" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:81c112a2-638b-401f-af0b-22a467a9b002" + "UKSOUTH:20180118T080333Z:a47ee856-5c09-4ae6-ada5-b81dab96b743" ], "Date": [ - "Thu, 27 Jul 2017 18:55:57 GMT" + "Thu, 18 Jan 2018 08:03:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar2034?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjIwMzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550dfeb8-975e-432a-9b6f-b63cc2ae076a" + "fb6e89da-a127-4c72-a21a-3eb2a2e08ad2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, "ResponseBody": "", @@ -1840,689 +1827,64 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "26c2ce5e-46b5-42be-baf8-2913bc178487" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "092100db-f1a7-4b05-9444-26db2797c196" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185558Z:092100db-f1a7-4b05-9444-26db2797c196" - ], - "Date": [ - "Thu, 27 Jul 2017 18:55:57 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "1198" ], "x-ms-request-id": [ - "5b4099da-1031-4b77-9195-3d3e875ac2b3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "x-ms-correlation-request-id": [ - "5e061085-801e-4da0-9781-2629098acf0c" + "405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185628Z:5e061085-801e-4da0-9781-2629098acf0c" - ], - "Date": [ - "Thu, 27 Jul 2017 18:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "UKSOUTH:20180118T080336Z:405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "0099f910-2a43-4b09-909d-9f9d085cf374" - ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "a5066724-a40e-4321-95ff-3334e458b05e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185658Z:a5066724-a40e-4321-95ff-3334e458b05e" - ], "Date": [ - "Thu, 27 Jul 2017 18:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "ce3c0fd6-30ec-4425-91cc-f085fd6ef8c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "af4231a9-b8c9-4601-9866-d3deb565fa07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185728Z:af4231a9-b8c9-4601-9866-d3deb565fa07" + "Thu, 18 Jan 2018 08:03:35 GMT" ], - "Date": [ - "Thu, 27 Jul 2017 18:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "5957bc88-3189-4ec0-9371-e2fa8321e0b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "4774f23f-4f34-412c-839d-25aade3dba94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185758Z:4774f23f-4f34-412c-839d-25aade3dba94" - ], - "Date": [ - "Thu, 27 Jul 2017 18:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "3638582a-d3b3-4485-af8e-c3fed29f4b17" - ], - "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": [ - "b86c007a-ae6b-425b-85ef-b797339590d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185829Z:b86c007a-ae6b-425b-85ef-b797339590d4" - ], - "Date": [ - "Thu, 27 Jul 2017 18:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"endTime\": \"2017-07-27T11:58:29.5659277-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "08a88558-a31f-4f1a-87c4-424efc26ac1b" - ], - "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": [ - "693537fa-dcad-446e-ab06-d7ae98c0838a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185859Z:693537fa-dcad-446e-ab06-d7ae98c0838a" - ], - "Date": [ - "Thu, 27 Jul 2017 18:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1693?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2OTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e325e6f-51f0-4074-9cda-da7250dc6104" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "255cad06-463c-4336-b2c7-48e010a03e23" - ], - "x-ms-correlation-request-id": [ - "255cad06-463c-4336-b2c7-48e010a03e23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185900Z:255cad06-463c-4336-b2c7-48e010a03e23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:59:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "Location": [ + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIyMDM0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "x-ms-correlation-request-id": [ - "b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185931Z:b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:59:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "x-ms-correlation-request-id": [ - "0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190001Z:0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:00:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "x-ms-correlation-request-id": [ - "d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190031Z:d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:00:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "x-ms-correlation-request-id": [ - "361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190101Z:361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:01:01 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar1693", - "crptestar9371", - "as1739" + "crptestar2034", + "crptestar7553", + "as719" ], "CreatePublicIP": [ - "pip7339", - "dn7924" + "pip3740", + "dn969" ], "CreateVNET": [ - "vn3964", - "sn1399" + "vn7060", + "sn952" ], "CreateNIC": [ - "nic7002", - "ip9012" + "nic1357", + "ip8046" ], "CreateDefaultVMInput": [ - "crptestar751", - "crptestar3126", - "crptestar840", - "vm1957", - "Microsoft.Compute/virtualMachines1047" + "crptestar5012", + "crptestar9214", + "crptestar9295", + "vm1806", + "Microsoft.Compute/virtualMachines2118" ] }, "Variables": { "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs b/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs index 34b0b0dee9a68..6acb09188fe50 100644 --- a/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs +++ b/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs @@ -185,10 +185,10 @@ public void TestVMScaleSetWithPublicIP() var vmss = m_CrpClient.VirtualMachineScaleSets.Get(rgName, vmssName); Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration); - Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings); - Assert.Equal(dnsname, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings.DomainNameLabel); Assert.Equal("pip1", vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.Name); Assert.Equal(10, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.IdleTimeoutInMinutes); + Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings); + Assert.Equal(dnsname, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings.DomainNameLabel); passed = true; } finally diff --git a/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs index 3506d66906efc..07c3df51a3fdc 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs @@ -130,6 +130,11 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; private set; } + /// + /// Gets the IVirtualMachineRunCommandsOperations. + /// + public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } + /// /// Gets the IResourceSkusOperations. /// @@ -145,11 +150,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual ISnapshotsOperations Snapshots { get; private set; } - /// - /// Gets the IVirtualMachineRunCommandsOperations. - /// - public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } - /// /// Gets the IContainerServicesOperations. /// @@ -368,10 +368,10 @@ private void Initialize() VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); VirtualMachineScaleSetVMs = new VirtualMachineScaleSetVMsOperations(this); + VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); ResourceSkus = new ResourceSkusOperations(this); Disks = new DisksOperations(this); Snapshots = new SnapshotsOperations(this); - VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); ContainerServices = new ContainerServicesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; diff --git a/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs index 48420ed28f07f..0097ff1831a67 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs @@ -125,6 +125,11 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; } + /// + /// Gets the IVirtualMachineRunCommandsOperations. + /// + IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } + /// /// Gets the IResourceSkusOperations. /// @@ -140,11 +145,6 @@ public partial interface IComputeManagementClient : System.IDisposable /// ISnapshotsOperations Snapshots { get; } - /// - /// Gets the IVirtualMachineRunCommandsOperations. - /// - IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } - /// /// Gets the IContainerServicesOperations. /// diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs index cc9411e9adf20..c4aa9dc9bd237 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs @@ -55,18 +55,21 @@ public DataDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public DataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) + public DataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { Lun = lun; Name = name; Vhd = vhd; Image = image; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -120,6 +123,13 @@ public DataDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machine should be /// created.&lt;br&gt;&lt;br&gt; Possible values diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs index a7af497266f62..92743c0e28e79 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs @@ -62,12 +62,14 @@ public OSDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public OSDisk(DiskCreateOptionTypes createOption, OperatingSystemTypes? osType = default(OperatingSystemTypes?), DiskEncryptionSettings encryptionSettings = default(DiskEncryptionSettings), string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) + public OSDisk(DiskCreateOptionTypes createOption, OperatingSystemTypes? osType = default(OperatingSystemTypes?), DiskEncryptionSettings encryptionSettings = default(DiskEncryptionSettings), string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { OsType = osType; EncryptionSettings = encryptionSettings; @@ -75,6 +77,7 @@ public OSDisk() Vhd = vhd; Image = image; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -139,6 +142,13 @@ public OSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machine should be /// created.&lt;br&gt;&lt;br&gt; Possible values diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs index 51793a2d8b29b..2043b21092759 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs @@ -35,6 +35,12 @@ public VirtualMachineInstanceView() /// the virtual machine. /// Specifies the fault domain of the /// virtual machine. + /// The computer name assigned to the + /// virtual machine. + /// The Operating System running on the virtual + /// machine. + /// The version of Operating System running on + /// the virtual machine. /// The Remote desktop certificate /// thumbprint. /// The VM Agent running on the virtual @@ -51,10 +57,13 @@ public VirtualMachineInstanceView() /// Azure also enables you to see a screenshot of the VM from the /// hypervisor. /// The resource status information. - public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), IList statuses = default(IList)) + public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string computerName = default(string), string osName = default(string), string osVersion = default(string), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), IList statuses = default(IList)) { PlatformUpdateDomain = platformUpdateDomain; PlatformFaultDomain = platformFaultDomain; + ComputerName = computerName; + OsName = osName; + OsVersion = osVersion; RdpThumbPrint = rdpThumbPrint; VmAgent = vmAgent; MaintenanceRedeployStatus = maintenanceRedeployStatus; @@ -82,6 +91,25 @@ public VirtualMachineInstanceView() [JsonProperty(PropertyName = "platformFaultDomain")] public int? PlatformFaultDomain { get; set; } + /// + /// Gets or sets the computer name assigned to the virtual machine. + /// + [JsonProperty(PropertyName = "computerName")] + public string ComputerName { get; set; } + + /// + /// Gets or sets the Operating System running on the virtual machine. + /// + [JsonProperty(PropertyName = "osName")] + public string OsName { get; set; } + + /// + /// Gets or sets the version of Operating System running on the virtual + /// machine. + /// + [JsonProperty(PropertyName = "osVersion")] + public string OsVersion { get; set; } + /// /// Gets or sets the Remote desktop certificate thumbprint. /// diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs index 38b70bc20ed55..c2244676f4291 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs @@ -44,16 +44,19 @@ public VirtualMachineScaleSetDataDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public VirtualMachineScaleSetDataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetDataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Name = name; Lun = lun; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -92,6 +95,13 @@ public VirtualMachineScaleSetDataDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets the create option. Possible values include: /// 'FromImage', 'Empty', 'Attach' diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs index e3527c6d24d53..c7820fd883f33 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs @@ -48,6 +48,8 @@ public VirtualMachineScaleSetOSDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// This property allows you to specify the type /// of the OS that is included in the disk if creating a VM from /// user-image or a specialized VHD. <br><br> Possible @@ -58,10 +60,11 @@ public VirtualMachineScaleSetOSDisk() /// Specifies the container urls that are /// used to store operating system disks for the scale set. /// The managed disk parameters. - public VirtualMachineScaleSetOSDisk(DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetOSDisk(DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Name = name; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; OsType = osType; Image = image; @@ -94,6 +97,13 @@ public VirtualMachineScaleSetOSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machines in the scale set /// should be created.&lt;br&gt;&lt;br&gt; The only diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs index d9963d53dfa8d..8eb3464ce66fb 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs @@ -36,6 +36,8 @@ public VirtualMachineScaleSetUpdateOSDisk() /// /// The caching type. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// The Source User Image VirtualHardDisk. This /// VirtualHardDisk will be copied before using it to attach to the /// Virtual Machine. If SourceImage is provided, the destination @@ -43,9 +45,10 @@ public VirtualMachineScaleSetUpdateOSDisk() /// The list of virtual hard disk container /// uris. /// The managed disk parameters. - public VirtualMachineScaleSetUpdateOSDisk(CachingTypes? caching = default(CachingTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetUpdateOSDisk(CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; Image = image; VhdContainers = vhdContainers; ManagedDisk = managedDisk; @@ -64,6 +67,13 @@ public VirtualMachineScaleSetUpdateOSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets the Source User Image VirtualHardDisk. This /// VirtualHardDisk will be copied before using it to attach to the diff --git a/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs index 91062783d95d1..8cdaaf3bf93ff 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs @@ -20,13 +20,12 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "VirtualMachineExtensionImages", "2017-12-01"), new Tuple("Compute", "VirtualMachineExtensions", "2017-12-01"), new Tuple("Compute", "VirtualMachineImages", "2017-12-01"), - new Tuple("Compute", "VirtualMachineRunCommands", "2017-03-30"), + new Tuple("Compute", "VirtualMachineRunCommands", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetVMs", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSets", "2017-12-01"), new Tuple("Compute", "VirtualMachineSizes", "2017-12-01"), - new Tuple("Compute", "VirtualMachines", "2017-03-30"), new Tuple("Compute", "VirtualMachines", "2017-12-01"), new Tuple("ContainerService", "ContainerServices", "2017-01-31"), }.AsEnumerable(); diff --git a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs index 7bf86978fb5f1..12c7a27379198 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs @@ -94,7 +94,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -293,7 +293,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs index 03a238a5d06aa..6fb3168cec065 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs @@ -3510,7 +3510,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj b/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj index 2336451280a13..f089c18d5ed22 100644 --- a/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj +++ b/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj @@ -6,12 +6,12 @@ Microsoft.Azure.Management.Compute Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. - 17.3.0 + 17.4.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs b/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs index b61f2e1af6e54..418dd802654ea 100644 --- a/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs +++ b/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] [assembly: AssemblyVersion("17.0.0.0")] -[assembly: AssemblyFileVersion("17.3.0.0")] +[assembly: AssemblyFileVersion("17.4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/SDKs/_metadata/compute_resource-manager.txt b/src/SDKs/_metadata/compute_resource-manager.txt index 9d11fdb98294f..5f351ce769aed 100644 --- a/src/SDKs/_metadata/compute_resource-manager.txt +++ b/src/SDKs/_metadata/compute_resource-manager.txt @@ -1,11 +1,11 @@ -2018-01-10 00:32:31 UTC +2018-01-23 22:44:35 UTC 1) azure-rest-api-specs repository information GitHub user: Azure -Branch: current -Commit: e7a671f89163de46237d548bf1bff9f207dd567d +Branch: master +Commit: 40324aa5ea587a477cef76d463f5aeef936cc53b 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\hylee\AppData\Roaming\npm `-- autorest@2.0.4215 +Bootstrapper version: C:\Users\hylee\AppData\Roaming\npm `-- autorest@2.0.4238 Latest installed version: From f524585c9d26ba6bfb5a75859885ee632af8d424 Mon Sep 17 00:00:00 2001 From: Hyonho Lee Date: Tue, 23 Jan 2018 17:46:54 -0800 Subject: [PATCH 2/2] adding WriteAcceleratorEnabled property for Disks, and adding ComputerName, OsName and OsVersion properties for VM instance view. --- .../DiskRPTests/DiskRPManageByTests.cs | 2 +- .../DiskRPTests/DiskRPTestsBase.cs | 2 +- .../Compute/Compute.Tests/Helpers/Helpers.cs | 30 +- .../ScenarioTests/ExtensionTests.cs | 2 +- .../Compute.Tests/ScenarioTests/ImageTests.cs | 2 +- .../ScenarioTests/ListSkuTests.cs | 1 - .../ScenarioTests/ListVMTests.cs | 4 +- .../ScenarioTests/OSProfileTests.cs | 21 +- .../Compute.Tests/ScenarioTests/UsageTests.cs | 2 +- .../ScenarioTests/VMCertificateTests.cs | 2 +- .../ScenarioTests/VMDataDiskTests.cs | 2 +- .../ScenarioTests/VMDiagnosticsTests.cs | 2 +- .../ScenarioTests/VMDiskEncryptionTests.cs | 8 +- .../ScenarioTests/VMDiskSizeTests.cs | 2 +- .../ScenarioTests/VMMarketplaceTest.cs | 4 +- .../ScenarioTests/VMOperationalTests.cs | 8 +- .../ScenarioTests/VMRunCommandsTests.cs | 2 +- .../ScenarioTests/VMScenarioTests.cs | 60 +- .../Compute.Tests/ScenarioTests/VMTestBase.cs | 107 +- .../TestListSkus.json | 2 +- .../TestVMOperations.json | 4 +- .../TestListVMRunCommands.json | 66 +- .../TestVMScenarioOperations.json | 2177 +++++------------ ...TestVMScenarioOperations_ManagedDisks.json | 1658 ++++--------- ...perations_ManagedDisks_PirImage_Zones.json | 1472 ++++------- .../VMScaleSetNetworkProfileTests.cs | 4 +- .../Generated/ComputeManagementClient.cs | 12 +- .../Generated/IComputeManagementClient.cs | 10 +- .../Generated/Models/DataDisk.cs | 12 +- .../Generated/Models/OSDisk.cs | 12 +- .../Models/VirtualMachineInstanceView.cs | 30 +- .../Models/VirtualMachineScaleSetDataDisk.cs | 12 +- .../Models/VirtualMachineScaleSetOSDisk.cs | 12 +- .../VirtualMachineScaleSetUpdateOSDisk.cs | 12 +- .../SdkInfo_ComputeManagementClient.cs | 3 +- .../VirtualMachineRunCommandsOperations.cs | 4 +- .../Generated/VirtualMachinesOperations.cs | 2 +- .../Microsoft.Azure.Management.Compute.csproj | 4 +- .../Properties/AssemblyInfo.cs | 2 +- .../_metadata/compute_resource-manager.txt | 8 +- 40 files changed, 1860 insertions(+), 3921 deletions(-) diff --git a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs index 43e1b6fbb68d9..30af6d9b8d9d9 100644 --- a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs +++ b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPManageByTests.cs @@ -35,7 +35,7 @@ public void DiskManagedByTest() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, avSet, storageAccountOutput, imageRef, out inputVM, hasManagedDisks: true); + var createdVM = CreateVM(rgName, avSet, storageAccountOutput, imageRef, out inputVM, hasManagedDisks: true); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 1); var vmName = createdVM.Name; diff --git a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs index f58855a6ec91d..70b1bbc542b08 100644 --- a/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs +++ b/src/SDKs/Compute/Compute.Tests/DiskRPTests/DiskRPTestsBase.cs @@ -367,7 +367,7 @@ private Disk GenerateImportDisk(DiskCreateOption diskCreateOption, string rgName var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var createdVM = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 1); string[] id = createdVM.Id.Split('/'); diff --git a/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs b/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs index 8c47a2db70096..3dd52068b85cb 100644 --- a/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs +++ b/src/SDKs/Compute/Compute.Tests/Helpers/Helpers.cs @@ -43,9 +43,10 @@ public static void DeleteIfExists(this IResourceGroupsOperations rgOps, string r } } - public static void ValidateVirtualMachineSizeListResponse(IEnumerable vmSizeListResponse, bool hasAZ = false) + public static void ValidateVirtualMachineSizeListResponse(IEnumerable vmSizeListResponse, bool hasAZ = false, + bool? writeAcceleratorEnabled = null) { - var expectedVMSizePropertiesList = GetExpectedVirtualMachineSize(hasAZ); + var expectedVMSizePropertiesList = GetExpectedVirtualMachineSize(hasAZ, writeAcceleratorEnabled); IEnumerable vmSizesPropertyList = vmSizeListResponse; Assert.NotNull(vmSizesPropertyList); @@ -63,10 +64,31 @@ public static void ValidateVirtualMachineSizeListResponse(IEnumerable GetExpectedVirtualMachineSize(bool hasAZ) + private static List GetExpectedVirtualMachineSize(bool hasAZ, bool? writeAcceleratorEnabled = null) { var expectedVMSizePropertiesList = new List(); - if (hasAZ) + if (writeAcceleratorEnabled.HasValue && writeAcceleratorEnabled.Value) + { + expectedVMSizePropertiesList.Add(new VirtualMachineSize() + { + Name = "Standard_M64s", + MemoryInMB = 1024000, + NumberOfCores = 64, + OsDiskSizeInMB = 1047552, + ResourceDiskSizeInMB = 2048000, + MaxDataDiskCount = 64 + }); + expectedVMSizePropertiesList.Add(new VirtualMachineSize() + { + Name = "Standard_M64-16ms", + MemoryInMB = 1792000, + NumberOfCores = 64, + OsDiskSizeInMB = 1047552, + ResourceDiskSizeInMB = 2048000, + MaxDataDiskCount = 64 + }); + } + else if (hasAZ) { expectedVMSizePropertiesList.Add(new VirtualMachineSize() { diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs index c736af697e3bd..8b819c0efa4de 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ExtensionTests.cs @@ -53,7 +53,7 @@ public void TestVMExtensionOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var vm = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); // Delete an extension that does not exist in the VM. A http status code of NoContent should be returned which translates to operation success. m_CrpClient.VirtualMachineExtensions.Delete(rgName, vm.Name, "VMExtensionDoesNotExist"); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs index b55823c5d1d62..896e0a6025fd2 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ImageTests.cs @@ -86,7 +86,7 @@ public void TestImageOperations() }; // Create the VM, whose OS disk will be used in creating the image - var createdVM = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, addDataDiskToVM); + var createdVM = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, addDataDiskToVM); // Create the Image var imageInput = new Image() diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs index cc2fa84662b3b..fd8dedec53318 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListSkuTests.cs @@ -31,7 +31,6 @@ public void TestListSkus() Assert.True(skus.Any(sku => sku.LocationInfo != null), "Assert that the sku list has non null location info in it."); Assert.True(skus.All(sku => sku.LocationInfo.Count == 1), "There should be exactly one location info per entry."); Assert.True(skus.Any(sku => sku.LocationInfo[0].Location.Equals("westus", StringComparison.Ordinal)), "Assert that it has entry for one of the CRP regions (randomly picked)."); - Assert.True(skus.Any(sku => sku.Restrictions != null && sku.Restrictions[0].RestrictionInfo != null), "Assert that it has entry for some restriction and restriction info."); } } } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs index c2f7bc8eed4b0..8dbd0928ec8b9 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/ListVMTests.cs @@ -33,8 +33,8 @@ public void TestListVMInSubscription() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); - var vm2 = CreateVM_NoAsyncTracking(rg2Name, asName, storageAccountOutput, imageRef, out inputVM2); + var vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); + var vm2 = CreateVM(rg2Name, asName, storageAccountOutput, imageRef, out inputVM2); var listResponse = m_CrpClient.VirtualMachines.ListAll(); Assert.True(listResponse.Count() >= 2); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs index 34185666410f9..e8ee21ac55b8d 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/OSProfileTests.cs @@ -267,7 +267,7 @@ private void TestVMWithOSProfile( { StorageAccount storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - VirtualMachine vm = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, vmCustomizer); + VirtualMachine vm = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, vmCustomizer); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse); @@ -279,19 +279,12 @@ private void TestVMWithOSProfile( vmValidator(vm); } - m_CrpClient.VirtualMachines.Delete(rgName, vm.Name); - - // TODO: VM delete operation takes too long, disable it for now - // lroResponse = m_CrpClient.VirtualMachines.Delete(rgName, vm.Name); - // Assert.True(lroResponse.Status == ComputeOperationStatus.Succeeded); + m_CrpClient.VirtualMachines.BeginDelete(rgName, vm.Name); } finally { if (m_ResourcesClient != null) { - // TODO: RG delete operation takes too long, disable it for now - // var deleteResourceGroupResponse = m_ResourcesClient.ResourceGroups.Delete(rgName); - // Assert.True(deleteResourceGroupResponse.StatusCode == HttpStatusCode.OK); m_ResourcesClient.ResourceGroups.Delete(rgName); } } @@ -302,16 +295,6 @@ private void TestVMWithOSProfile( public static string ReadFromEmbeddedResource(Type type, string resourceName) { throw new NotSupportedException("\'type.Assembly\' is not supported for cross platform"); - //string result; - //using (Stream manifestResourceStream = type.Assembly.GetManifestResourceStream(type, resourceName) ?? type.Assembly.GetManifestResourceStream(resourceName)) - //{ - // using (StreamReader streamReader = new StreamReader(manifestResourceStream)) - // { - // result = streamReader.ReadToEnd(); - // } - //} - - //return result; } private static string GetAutoLogonContent(uint logonCount, string userName, string password) diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs index 2c7cae30cd813..7db95bfc79aa1 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/UsageTests.cs @@ -44,7 +44,7 @@ public void TestListUsages() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM); // List Usages, and do weak validation to assure that some usages were returned. var luResponse = m_CrpClient.Usage.List(vm1.Location); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs index 43a5c48fd5af2..2d61adc4f38e0 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMCertificateTests.cs @@ -44,7 +44,7 @@ public void TestVMCertificatesOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, AddCertificateInfo); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, AddCertificateInfo); m_CrpClient.VirtualMachines.Delete(rgName, inputVM.Name); } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs index f1f6d19d6512b..680dcbb6a92e2 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDataDiskTests.cs @@ -106,7 +106,7 @@ public void TestVMDataDiskScenario() }; */ }; - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imgageRef, out inputVM, addDataDiskToVM); + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imgageRef, out inputVM, addDataDiskToVM); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); Assert.True(getVMWithInstanceViewResponse != null, "VM in Get"); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs index ff18d9146806b..5e2d8403e3740 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiagnosticsTests.cs @@ -41,7 +41,7 @@ public void TestVMBootDiagnostics() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); VirtualMachine inputVM; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => { vm.DiagnosticsProfile = GetDiagnosticsProfile(storageAccountOutput.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs index af6f0fab0238c..f0d7f60da8164 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskEncryptionTests.cs @@ -43,20 +43,20 @@ public void TestVMDiskEncryption() var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); //Create VM with encryptionKey VirtualMachine inputVM1; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM1, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM1, (vm) => { vm.StorageProfile.OsDisk.EncryptionSettings = GetEncryptionSettings(); vm.HardwareProfile.VmSize = "Standard_D1"; - }, waitOperation: false); + }, waitForCompletion: false); //Create VM with encryptionKey and KEK VirtualMachine inputVM2; - CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM2, + CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM2, (vm) => { vm.StorageProfile.OsDisk.EncryptionSettings = GetEncryptionSettings(addKek:true); vm.HardwareProfile.VmSize = "Standard_D1"; - }, waitOperation: false); + }, waitForCompletion: false); m_CrpClient.VirtualMachines.Delete(rgName, inputVM1.Name); m_CrpClient.VirtualMachines.Delete(rgName, inputVM2.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs index e1d633f5f9d60..7a0e7f8e08a32 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMDiskSizeTests.cs @@ -33,7 +33,7 @@ public void TestVMDiskSizeScenario() { var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => + var vm1 = CreateVM(rgName, asName, storageAccountOutput, imageRef, out inputVM, (vm) => { vm.StorageProfile.OsDisk.DiskSizeGB = 150; }); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs index 7b4393f2c321c..4d40b8a1d5bf1 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMMarketplaceTest.cs @@ -68,7 +68,7 @@ public void TestVMMarketplace() inputVM = null; try { - vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); + vm1 = CreateVM(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); } catch (Exception ex) { @@ -122,7 +122,7 @@ public void TestVMBYOL() VirtualMachine vm1 = null; try { - vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); + vm1 = CreateVM(rgName, asName, storageAccountOutput, dummyImageRef, out inputVM, useVMMImage); } catch (Exception ex) { diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs index e39dd8e35f360..0a77506288bc3 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMOperationalTests.cs @@ -86,7 +86,7 @@ public void TestVMOperations() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, as1Name, storageAccountOutput, imageRef, out inputVM1); + VirtualMachine vm1 = CreateVM(rg1Name, as1Name, storageAccountOutput, imageRef, out inputVM1); m_CrpClient.VirtualMachines.Start(rg1Name, vm1.Name); m_CrpClient.VirtualMachines.Redeploy(rg1Name, vm1.Name); @@ -137,7 +137,7 @@ public void TestVMOperations() // TODO : Provisioning Time-out Issues VirtualMachine inputVM2; string as2Name = as1Name + "b"; - VirtualMachine vm2 = CreateVM_NoAsyncTracking(rg1Name, as2Name, storageAccountOutput, imageRef, out inputVM2, + VirtualMachine vm2 = CreateVM(rg1Name, as2Name, storageAccountOutput, imageRef, out inputVM2, vm => { vm.StorageProfile.ImageReference = null; @@ -187,7 +187,7 @@ public void TestVMOperations_Redeploy() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, + VirtualMachine vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); var redeployOperationResponse = m_CrpClient.VirtualMachines.BeginRedeployWithHttpMessagesAsync(rg1Name, vm1.Name); @@ -242,7 +242,7 @@ public void TestVMOperations_PerformMaintenance() // Create Storage Account, so that both the VMs can share it var storageAccountOutput = CreateStorageAccount(rg1Name, storageAccountName); - VirtualMachine vm1 = CreateVM_NoAsyncTracking(rg1Name, asName, storageAccountOutput, imageRef, + VirtualMachine vm1 = CreateVM(rg1Name, asName, storageAccountOutput, imageRef, out inputVM1); m_CrpClient.VirtualMachines.PerformMaintenance(rg1Name, vm1.Name); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs index 0242b504c643d..868df3d597267 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMRunCommandsTests.cs @@ -21,7 +21,7 @@ public void TestListVMRunCommands() var computeClient = ComputeManagementTestUtilities.GetComputeManagementClient(context, new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }); string location = ComputeManagementTestUtilities.DefaultLocation.Replace(" ", ""); - string documentId = "PowerShellScript"; + string documentId = "RunPowerShellScript"; // Verify the List of commands IEnumerable runCommandListResponse = computeClient.VirtualMachineRunCommands.List(location); diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs index 62b0841191248..5f775bb6dad1a 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMScenarioTests.cs @@ -8,6 +8,7 @@ using System; using System.Collections.Generic; using System.Linq; +using System.Threading; using Xunit; namespace Compute.Tests @@ -25,7 +26,6 @@ public class VMScenarioTests : VMTestBase /// GETVMs in a RG /// List VMSizes in a RG /// List VMSizes in an AvailabilitySet - /// Delete VM /// Delete RG /// [Fact] @@ -39,20 +39,33 @@ public void TestVMScenarioOperations() /// Covers following Operations for managed disks: /// Create RG /// Create Network Resources - /// Create VM + /// Create VM with WriteAccelerator enabled OS and Data disk /// GET VM Model View /// GET VM InstanceView /// GETVMs in a RG /// List VMSizes in a RG /// List VMSizes in an AvailabilitySet - /// Delete VM /// Delete RG + /// + /// To record this test case, you need to run it in region which support XMF VMSizeFamily like eastus2. /// [Fact] [Trait("Name", "TestVMScenarioOperations_ManagedDisks")] public void TestVMScenarioOperations_ManagedDisks() { - TestVMScenarioOperationsInternal("TestVMScenarioOperations_ManagedDisks", hasManagedDisks: true); + string originalTestLocation = Environment.GetEnvironmentVariable("AZURE_VM_TEST_LOCATION"); + try + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", "eastus2"); + TestVMScenarioOperationsInternal("TestVMScenarioOperations_ManagedDisks", vmSize: "Standard_M64s", hasManagedDisks: true, + storageAccountType: StorageAccountTypes.PremiumLRS, writeAcceleratorEnabled: true); + } + finally + { + Environment.SetEnvironmentVariable("AZURE_VM_TEST_LOCATION", originalTestLocation); + } + + } /// @@ -74,13 +87,15 @@ public void TestVMScenarioOperations_ManagedDisks_PirImage_Zones() } } - private void TestVMScenarioOperationsInternal(string methodName, bool hasManagedDisks = false, IList zones = null) + private void TestVMScenarioOperationsInternal(string methodName, bool hasManagedDisks = false, IList zones = null, string vmSize = VirtualMachineSizeTypes.StandardA0, + StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, bool? writeAcceleratorEnabled = null) { using (MockContext context = MockContext.Start(this.GetType().FullName, methodName)) { EnsureClientsInitialized(context); ImageReference imageRef = GetPlatformVMImage(useWindowsImage: true); + const string expectedOSName = "Windows Server 2012 R2 Datacenter", expectedOSVersion = "Microsoft Windows NT 6.3.9600.0", expectedComputerName = ComputerName; // Create resource group var rgName = ComputeManagementTestUtilities.GenerateName(TestPrefix); string storageAccountName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -90,41 +105,46 @@ private void TestVMScenarioOperationsInternal(string methodName, bool hasManaged { if (!hasManagedDisks) { - // Create Storage Account, so that both the VMs can share it - var storageAccountOutput = CreateStorageAccount(rgName, storageAccountName); - - m_CrpClient.VirtualMachines.Delete(rgName, "VMDoesNotExist"); - - m_CrpClient.AvailabilitySets.Delete(rgName, "ASDoesNotExist"); + CreateStorageAccount(rgName, storageAccountName); } - var vm1 = CreateVM_NoAsyncTracking(rgName, asName, storageAccountName, imageRef, out inputVM, hasManagedDisks: hasManagedDisks, zones: zones); + CreateVM(rgName, asName, storageAccountName, imageRef, out inputVM, hasManagedDisks: hasManagedDisks, vmSize: vmSize, storageAccountType: storageAccountType, + writeAcceleratorEnabled: writeAcceleratorEnabled, zones: zones); + // NOTE: In record mode, uncomment this line. This is to ensure that there is sufficient time for VMAgent to populate status blob with OS details. + // Thread.Sleep(TimeSpan.FromMinutes(5)); var getVMWithInstanceViewResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name, InstanceViewTypes.InstanceView); Assert.True(getVMWithInstanceViewResponse != null, "VM in Get"); - ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse, hasManagedDisks); + ValidateVMInstanceView(inputVM, getVMWithInstanceViewResponse, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); var getVMInstanceViewResponse = m_CrpClient.VirtualMachines.InstanceView(rgName, inputVM.Name); Assert.True(getVMInstanceViewResponse != null, "VM in InstanceView"); - ValidateVMInstanceView(inputVM, getVMInstanceViewResponse, hasManagedDisks); + ValidateVMInstanceView(inputVM, getVMInstanceViewResponse, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); bool hasUserDefinedAS = zones == null; var listResponse = m_CrpClient.VirtualMachines.List(rgName); ValidateVM(inputVM, listResponse.FirstOrDefault(x => x.Name == inputVM.Name), - Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name), hasManagedDisks, hasUserDefinedAS); + Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name), hasManagedDisks, hasUserDefinedAS, writeAcceleratorEnabled); var listVMSizesResponse = m_CrpClient.VirtualMachines.ListAvailableSizes(rgName, inputVM.Name); - Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null); + Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null, writeAcceleratorEnabled: writeAcceleratorEnabled); listVMSizesResponse = m_CrpClient.AvailabilitySets.ListAvailableSizes(rgName, asName); - Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null); - - m_CrpClient.VirtualMachines.Delete(rgName, inputVM.Name); + Helpers.ValidateVirtualMachineSizeListResponse(listVMSizesResponse, hasAZ: zones != null, writeAcceleratorEnabled: writeAcceleratorEnabled); } finally { - m_ResourcesClient.ResourceGroups.Delete(rgName); + // Fire and forget. No need to wait for RG deletion completion + try + { + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); + } + catch (Exception e) + { + // Swallow this exception so that the original exception is thrown + Console.WriteLine(e); + } } } } diff --git a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs index cac3a4c2df061..8299581717b05 100644 --- a/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs +++ b/src/SDKs/Compute/Compute.Tests/ScenarioTests/VMTestBase.cs @@ -26,6 +26,7 @@ public class VMTestBase { protected const string TestPrefix = "crptestar"; protected const string PLACEHOLDER = "[PLACEHOLDER]"; + protected const string ComputerName = "Test"; protected ResourceManagementClient m_ResourcesClient; protected ComputeManagementClient m_CrpClient; @@ -190,31 +191,33 @@ protected StorageAccount CreateStorageAccount(string rgName, string storageAccou } } - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVM( string rgName, string asName, StorageAccount storageAccount, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, bool createWithPublicIpAddress = false, - bool waitOperation = true, + bool waitForCompletion = true, bool hasManagedDisks = false) { - return CreateVM_NoAsyncTracking(rgName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, - createWithPublicIpAddress, waitOperation, hasManagedDisks); + return CreateVM(rgName, asName, storageAccount.Name, imageRef, out inputVM, vmCustomizer, createWithPublicIpAddress, waitForCompletion, hasManagedDisks); } - protected VirtualMachine CreateVM_NoAsyncTracking( + protected VirtualMachine CreateVM( string rgName, string asName, string storageAccountName, ImageReference imageRef, out VirtualMachine inputVM, Action vmCustomizer = null, bool createWithPublicIpAddress = false, - bool waitOperation = true, + bool waitForCompletion = true, bool hasManagedDisks = false, + string vmSize = VirtualMachineSizeTypes.StandardA0, + StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, + bool? writeAcceleratorEnabled = null, IList zones = null) { try { // Create the resource Group, it might have been already created during StorageAccount creation. - var resourceGroup = m_ResourcesClient.ResourceGroups.CreateOrUpdate( + m_ResourcesClient.ResourceGroups.CreateOrUpdate( rgName, new ResourceGroup { @@ -238,7 +241,7 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string asetId = CreateAvailabilitySet(rgName, asName, hasManagedDisks); - inputVM = CreateDefaultVMInput(rgName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks); + inputVM = CreateDefaultVMInput(rgName, storageAccountName, imageRef, asetId, nicResponse.Id, hasManagedDisks, vmSize, storageAccountType, writeAcceleratorEnabled); if (zones != null) { @@ -255,12 +258,14 @@ protected VirtualMachine CreateVM_NoAsyncTracking( string expectedVMReferenceId = Helpers.GetVMReferenceId(m_subId, rgName, inputVM.Name); VirtualMachine createOrUpdateResponse = null; - if (waitOperation) + if (waitForCompletion) { + // CreateOrUpdate polls for the operation completion and returns once the operation reaches a terminal state createOrUpdateResponse = m_CrpClient.VirtualMachines.CreateOrUpdate(rgName, inputVM.Name, inputVM); } else { + // BeginCreateOrUpdate returns immediately after the request is accepted by CRP createOrUpdateResponse = m_CrpClient.VirtualMachines.BeginCreateOrUpdate(rgName, inputVM.Name, inputVM); } @@ -278,17 +283,16 @@ protected VirtualMachine CreateVM_NoAsyncTracking( Assert.True(createOrUpdateResponse.Zones.FirstOrDefault() == zones.FirstOrDefault()); } - // CONSIDER dropping this Get and ValidateVM call. Nothing changes in the VM model after it's accepted. - // There might have been intent to track the async operation to completion and then check the VM is - // still this and okay, but that's not what the code above does and still doesn't make much sense. + // The intent here is to validate that the GET response is as expected. var getResponse = m_CrpClient.VirtualMachines.Get(rgName, inputVM.Name); - ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, hasUserDefinedAS: zones == null); + ValidateVM(inputVM, getResponse, expectedVMReferenceId, hasManagedDisks, writeAcceleratorEnabled: writeAcceleratorEnabled, hasUserDefinedAS: zones == null); return getResponse; } catch { - m_ResourcesClient.ResourceGroups.Delete(rgName); + // Just trigger DeleteRG, rest would be taken care of by ARM + m_ResourcesClient.ResourceGroups.BeginDelete(rgName); throw; } } @@ -726,7 +730,8 @@ protected string CreateAvailabilitySet(string rgName, string asName, bool hasMan return asetId; } - protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false) + protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccountName, ImageReference imageRef, string asetId, string nicId, bool hasManagedDisks = false, + string vmSize = VirtualMachineSizeTypes.StandardA0, StorageAccountTypes storageAccountType = StorageAccountTypes.StandardLRS, bool? writeAcceleratorEnabled = null) { // Generate Container name to hold disk VHds string containerName = ComputeManagementTestUtilities.GenerateName(TestPrefix); @@ -734,6 +739,12 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou var vhduri = vhdContainer + string.Format("/{0}.vhd", ComputeManagementTestUtilities.GenerateName(TestPrefix)); var osVhduri = vhdContainer + string.Format("/os{0}.vhd", ComputeManagementTestUtilities.GenerateName(TestPrefix)); + if (writeAcceleratorEnabled.HasValue) + { + // WriteAccelerator is only allowed on VMs with Managed disks + Assert.True(hasManagedDisks); + } + var vm = new VirtualMachine { Location = m_location, @@ -741,7 +752,7 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou AvailabilitySet = new Microsoft.Azure.Management.Compute.Models.SubResource() { Id = asetId }, HardwareProfile = new HardwareProfile { - VmSize = VirtualMachineSizeTypes.StandardA0 + VmSize = vmSize }, StorageProfile = new StorageProfile { @@ -749,11 +760,16 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou OsDisk = new OSDisk { Caching = CachingTypes.None, + WriteAcceleratorEnabled = writeAcceleratorEnabled, CreateOption = DiskCreateOptionTypes.FromImage, Name = "test", Vhd = hasManagedDisks ? null : new VirtualHardDisk { Uri = osVhduri + }, + ManagedDisk = !hasManagedDisks ? null : new ManagedDiskParameters + { + StorageAccountType = storageAccountType } }, DataDisks = !hasManagedDisks ? null : new List() @@ -761,12 +777,13 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou new DataDisk() { Caching = CachingTypes.None, + WriteAcceleratorEnabled = writeAcceleratorEnabled, CreateOption = DiskCreateOptionTypes.Empty, Lun = 0, DiskSizeGB = 30, ManagedDisk = new ManagedDiskParameters() { - StorageAccountType = StorageAccountTypes.StandardLRS + StorageAccountType = storageAccountType } } }, @@ -785,7 +802,7 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou { AdminUsername = "Foo12", AdminPassword = PLACEHOLDER, - ComputerName = "test" + ComputerName = ComputerName } }; @@ -794,7 +811,8 @@ protected VirtualMachine CreateDefaultVMInput(string rgName, string storageAccou return vm; } - protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false, bool hasUserDefinedAS = true) + protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expectedVMReferenceId, bool hasManagedDisks = false, bool hasUserDefinedAS = true, + bool? writeAcceleratorEnabled = null) { Assert.True(vmOut.LicenseType == vm.LicenseType); @@ -839,6 +857,15 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect { Assert.NotNull(vmOut.StorageProfile.OsDisk.ManagedDisk.Id); } + + if (writeAcceleratorEnabled.HasValue) + { + Assert.Equal(writeAcceleratorEnabled.Value, vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } + else + { + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } } else { @@ -856,8 +883,7 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect { foreach (var dataDisk in vm.StorageProfile.DataDisks) { - var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault( - d => dataDisk.Lun == d.Lun); + var dataDiskOut = vmOut.StorageProfile.DataDisks.FirstOrDefault(d => dataDisk.Lun == d.Lun); Assert.NotNull(dataDiskOut); Assert.Equal(dataDiskOut.DiskSizeGB, dataDisk.DiskSizeGB); @@ -885,6 +911,14 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect dataDisk.ManagedDisk.StorageAccountType); } Assert.NotNull(dataDiskOut.ManagedDisk.Id); + if (writeAcceleratorEnabled.HasValue) + { + Assert.Equal(writeAcceleratorEnabled.Value, dataDiskOut.WriteAcceleratorEnabled); + } + else + { + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); + } } else { @@ -895,6 +929,7 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect Assert.NotNull(dataDiskOut.Image); Assert.Equal(dataDisk.Image.Uri, dataDiskOut.Image.Uri); } + Assert.Null(vmOut.StorageProfile.OsDisk.WriteAcceleratorEnabled); } // ReSharper enable PossibleNullReferenceException } @@ -931,18 +966,23 @@ protected void ValidateVM(VirtualMachine vm, VirtualMachine vmOut, string expect Assert.NotNull(vmOut.VmId); } - protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachine vmOut, bool hasManagedDisks = false) + protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachine vmOut, bool hasManagedDisks = false, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { Assert.NotNull(vmOut.InstanceView); - ValidateVMInstanceView(vmIn, vmOut.InstanceView, hasManagedDisks); + ValidateVMInstanceView(vmIn, vmOut.InstanceView, hasManagedDisks, expectedComputerName, expectedOSName, expectedOSVersion); } - protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false) + protected void ValidateVMInstanceView(VirtualMachine vmIn, VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { - ValidateVMInstanceView(vmInstanceView, hasManagedDisks, !hasManagedDisks ? vmIn.StorageProfile.OsDisk.Name : null); + ValidateVMInstanceView(vmInstanceView, hasManagedDisks, + !hasManagedDisks ? vmIn.StorageProfile.OsDisk.Name : null, + expectedComputerName, expectedOSName, expectedOSVersion); } - private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, string osDiskName = null) + private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, bool hasManagedDisks = false, string osDiskName = null, + string expectedComputerName = null, string expectedOSName = null, string expectedOSVersion = null) { Assert.Contains(vmInstanceView.Statuses, s => !string.IsNullOrEmpty(s.Code)); @@ -964,6 +1004,19 @@ private void ValidateVMInstanceView(VirtualMachineInstanceView vmInstanceView, b //Assert.NotNull(diskInstanceView.Statuses[0].Message); // TODO: it's null somtimes. //Assert.NotNull(diskInstanceView.Statuses[0].Time); // TODO: it's null somtimes. } + + if (expectedComputerName != null) + { + Assert.Equal(expectedComputerName, vmInstanceView.ComputerName); + } + if (expectedOSName != null) + { + Assert.Equal(expectedOSName, vmInstanceView.OsName); + } + if (expectedOSVersion != null) + { + Assert.Equal(expectedOSVersion, vmInstanceView.OsVersion); + } } protected void ValidatePlan(Microsoft.Azure.Management.Compute.Models.Plan inputPlan, Microsoft.Azure.Management.Compute.Models.Plan outPutPlan) @@ -981,7 +1034,5 @@ protected void ValidatePlan(Microsoft.Azure.Management.Compute.Models.Plan input Assert.Equal(inputPlan.Product, outPutPlan.Product); Assert.Equal(inputPlan.PromotionCode, outPutPlan.PromotionCode); } - - } } diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json index 9a51b6756ba8d..ecdfa4f0d8932 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.ListSkuTests/TestListSkus.json @@ -19,7 +19,7 @@ "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1088.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": [{\r\n \"type\": \"Location\",\r\n \"values\": [\"eastus2\"],\r\n \"restrictionInfo\": {\r\n \"locations\": [\"eastus2\"]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n}, {\r\n \"type\": \"Zone\",\r\n \"values\": [\"eastus2\"],\r\n \"restrictionInfo\": {\r\n \"locations\": [\"eastus2\"],\r\n \"zones\": [\"1\", \"2\", \"3\"]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }]\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"2\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Classic\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"3\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"availabilitySets\",\r\n \"name\": \"Aligned\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"capabilities\": [\r\n {\r\n \"name\": \"MaximumPlatformFaultDomainCount\",\r\n \"value\": \"1\"\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"disks\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"canadaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"canadaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centralindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"southindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreacentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreacentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"koreasouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"koreasouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"westindia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westindia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"eastus2euap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2euap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Standard_LRS\",\r\n \"tier\": \"Standard\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"snapshots\",\r\n \"name\": \"Premium_LRS\",\r\n \"tier\": \"Premium\",\r\n \"locations\": [\r\n \"centraluseuap\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centraluseuap\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"eastus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastus2\",\r\n \"zones\": [\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"centralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"centralus\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"southcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"northeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"northeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\",\r\n \"2\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\",\r\n \"2\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"1\",\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"2\",\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"westeurope\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westeurope\",\r\n \"zones\": [\r\n \"3\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"eastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"eastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"southeastasia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"southeastasia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A9\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A9\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A10\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A10\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"japaneast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japaneast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"japanwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"japanwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"australiaeast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiaeast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"australiasoutheast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"australiasoutheast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"brazilsouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"brazilsouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"SouthIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"SouthIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"SouthIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": [\r\n {\r\n \"type\": \"Location\",\r\n \"values\": [\r\n \"CentralIndia\"\r\n ],\r\n \"restrictionInfo\": {\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ]\r\n },\r\n \"reasonCode\": \"NotAvailableForSubscription\"\r\n }\r\n ]\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"WestIndia\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"WestIndia\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"CanadaEast\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CanadaEast\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-16ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-16ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64-32ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64-32ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M64s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M64s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_M128s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"M128s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND6s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND6s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND12s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND12s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24rs\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24rs\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_ND24s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"ND24s\",\r\n \"locations\": [\r\n \"westus2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westus2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"westcentralus\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"westcentralus\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NC24r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NC24r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H8m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H8m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16m\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16m\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16r\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16r\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_H16mr\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"H16mr\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV6\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV12\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_NV24\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"NV24\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_G5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"G5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS1\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS2\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS3\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-4\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS4-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS4-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-8\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_GS5-16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"GS5-16\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L4s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L8s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L16s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_L32s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"L32s\",\r\n \"locations\": [\r\n \"uksouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"uksouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"ukwest\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"ukwest\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E2s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E4s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-8s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-16s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64-32s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_E64s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"E64s_v3\",\r\n \"locations\": [\r\n \"KoreaCentral\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaCentral\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"KoreaSouth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"KoreaSouth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKNorth\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKNorth\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"UKSouth2\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"UKSouth2\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"3\",\r\n \"2\",\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B1s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B2s\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B4ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B4ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_B8ms\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"B8ms\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D8s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D8s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D16s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D16s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D32s_v3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D32s_v3\",\r\n \"locations\": [\r\n \"EastUS2EUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"EastUS2EUAP\",\r\n \"zones\": [\r\n \"1\"\r\n ]\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A0\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A5\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A5\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A6\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A6\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A7\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A7\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A0\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A0\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A1\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A2\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A3\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Basic_A4\",\r\n \"tier\": \"Basic\",\r\n \"size\": \"A4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8m_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8m_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_A8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"A8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"D14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS1_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-2_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-4_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14-8_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS15_v2\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS15_v2\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS2_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS3_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS4_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS5_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS11_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS12_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS13_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"DS14_v2_Promo\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F1s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F1s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F2s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F2s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F4s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F4s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F8s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F8s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n },\r\n {\r\n \"resourceType\": \"virtualMachines\",\r\n \"name\": \"Standard_F16s\",\r\n \"tier\": \"Standard\",\r\n \"size\": \"F16s\",\r\n \"locations\": [\r\n \"CentralUSEUAP\"\r\n ],\r\n \"locationInfo\": [\r\n {\r\n \"location\": \"CentralUSEUAP\",\r\n \"zones\": []\r\n }\r\n ],\r\n \"restrictions\": []\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "605246" diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json index d61d0f6f191cb..ce0a6ee441359 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMOperationalTests/TestVMOperations.json @@ -2822,8 +2822,8 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar49701/providers/Microsoft.Compute/virtualMachines/vm5990/runCommand?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01OTkwL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxNy0wMy0zMA==", + "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/resourceGroups/crptestar49701/providers/Microsoft.Compute/virtualMachines/vm5990/runCommand?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjQ5NzAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS92aXJ0dWFsTWFjaGluZXMvdm01OTkwL3J1bkNvbW1hbmQ/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"commandId\": \"RunPowerShellScript\",\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$arg1,\",\r\n \" [string]$arg2\",\r\n \")\",\r\n \"echo This is a sample script with parameters $arg1 $arg2\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"arg1\",\r\n \"value\": \"value1\"\r\n },\r\n {\r\n \"name\": \"arg2\",\r\n \"value\": \"value2\"\r\n }\r\n ]\r\n}", "RequestHeaders": { diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json index fc06609e6ebf5..eb1cdd68045b3 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMRunCommandsTests/TestListVMRunCommands.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcz9hcGktdmVyc2lvbj0yMDE3LTAzLTMw", + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33504a08-ab91-44e3-9f7e-0c2a764aee21" + "1557001a-2e16-497e-b632-416fdb99584c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1637.0", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.488.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.942.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableRemotePS\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable remote PowerShell\",\r\n \"description\": \"Configure the machine to enable remote powershell.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"GetRDP\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"RDP configuration\",\r\n \"description\": \"List detailed information for the RDP settings: port number, domain profile, etc. and optionally reset the RDP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"IPConfig\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"List IP configuration\",\r\n \"description\": \"Shows detailed information for the IP address, subnet mask and default gateway for each adapter bound to TCP/IP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"PowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Executes a custom PowerShell script with optional parameters.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"CustomScriptForLinux\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"Executes a Linux shell script\",\r\n \"description\": \"Executes a custom script with optional parameters.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ifconfig\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"List network configuration\",\r\n \"description\": \"Get the configuration of all network interfaces.\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableRemotePS\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable remote PowerShell\",\r\n \"description\": \"Configure the machine to enable remote PowerShell.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"IPConfig\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"List IP configuration\",\r\n \"description\": \"Shows detailed information for the IP address, subnet mask and default gateway for each adapter bound to TCP/IP.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunPowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Custom multiline PowerShell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunShellScript\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"Executes a Linux shell script\",\r\n \"description\": \"Custom multiline shell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ifconfig\",\r\n \"osType\": \"Linux\",\r\n \"label\": \"List network configuration\",\r\n \"description\": \"Get the configuration of all network interfaces.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"EnableAdminAccount\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Enable administrator account\",\r\n \"description\": \"Checks if the local Administrator account is disabled, and if so enables it.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ResetAccountPassword\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Reset built-in Administrator account password\",\r\n \"description\": \"Reset built-in Administrator account password.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RDPSettings\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Verify RDP Listener Settings\",\r\n \"description\": \"Checks registry settings and domain policy settings. Suggests policy actions if machine is part of a domain or modifies the settings to default values.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"SetRDPPort\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Set Remote Desktop port\",\r\n \"description\": \"Sets the default or user specified port number for Remote Desktop connections. Enables firewall rule for inbound access to the port.\"\r\n },\r\n {\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"ResetRDPCert\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Restore RDP Authentication mode to defaults\",\r\n \"description\": \"Removes the SSL certificate tied to the RDP listener and restores the RDP listerner security to default. Use this script if you see any issues with the certificate.\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1849" + "3445" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,14 +33,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4799,Microsoft.Compute/LowCostGet30Min;38399" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_131339989493700012" + "c18570f4-edc2-4f83-9d5a-8a888cbd0148_131600023114504580" ], "x-ms-request-id": [ - "663fc897-801b-4d17-8b11-d88329d907de" + "6d438d5e-e671-4ad8-81e9-4b5f2b7ceeb1" ], "Cache-Control": [ "no-cache" @@ -50,43 +53,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14999" ], "x-ms-correlation-request-id": [ - "98be8e4b-e66b-4461-8430-ac2165efa695" + "1530707d-5190-4fa4-bfa1-4505c019998e" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20170427T180326Z:98be8e4b-e66b-4461-8430-ac2165efa695" + "WESTUS2:20180111T214846Z:1530707d-5190-4fa4-bfa1-4505c019998e" ], "Date": [ - "Thu, 27 Apr 2017 18:03:26 GMT" + "Thu, 11 Jan 2018 21:48:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/24fb23e3-6ba3-41f0-9b6e-e41131d5d61e/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands/PowerShellScript?api-version=2017-03-30", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjRmYjIzZTMtNmJhMy00MWYwLTliNmUtZTQxMTMxZDVkNjFlL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcy9Qb3dlclNoZWxsU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTctMDMtMzA=", + "RequestUri": "/subscriptions/5393f919-a68a-43d0-9063-4b2bda6bffdf/providers/Microsoft.Compute/locations/SoutheastAsia/runCommands/RunPowerShellScript?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTM5M2Y5MTktYTY4YS00M2QwLTkwNjMtNGIyYmRhNmJmZmRmL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9ydW5Db21tYW5kcy9SdW5Qb3dlclNoZWxsU2NyaXB0P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b266ab1-833b-49af-b047-2d0555f21e6a" + "562b98ac-b6bc-455e-b486-ddf8e685bc51" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.1637.0", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.14393", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.488.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.942.0" ] }, - "ResponseBody": "{\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$customScript,\",\r\n \" [string]$customParameters\",\r\n \")\",\r\n \"$scriptBlock = [Scriptblock]::Create(\\\".{$customScript} $(&{$args} $customParameters)\\\")\",\r\n \"Invoke-Command $scriptBlock\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"customScript\",\r\n \"type\": \"string\",\r\n \"required\": true\r\n },\r\n {\r\n \"name\": \"customParameters\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n }\r\n ],\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"PowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Executes a custom PowerShell script with optional parameters.\"\r\n}", + "ResponseBody": "{\r\n \"script\": [\r\n \"param(\",\r\n \" [string]$arg1,\",\r\n \" [string]$arg2\",\r\n \")\",\r\n \"Write-Host This is a sample script with parameters $arg1 $arg2\"\r\n ],\r\n \"parameters\": [\r\n {\r\n \"name\": \"arg1\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n },\r\n {\r\n \"name\": \"arg2\",\r\n \"type\": \"string\",\r\n \"required\": false\r\n }\r\n ],\r\n \"$schema\": \"http://schema.management.azure.com/schemas/2016-11-17/runcommands.json\",\r\n \"id\": \"RunPowerShellScript\",\r\n \"osType\": \"Windows\",\r\n \"label\": \"Executes a PowerShell script\",\r\n \"description\": \"Custom multiline PowerShell script should be defined in script property. Optional parameters can be set in parameters property.\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "737" + "709" ], "Content-Type": [ "application/json; charset=utf-8" @@ -97,14 +100,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4798,Microsoft.Compute/LowCostGet30Min;38398" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "d8479ab9-b4a1-4ca4-bfe5-eb2106eeb54c_131339989493700012" + "c18570f4-edc2-4f83-9d5a-8a888cbd0148_131600023114504580" ], "x-ms-request-id": [ - "26964d24-3fe5-4c1e-9053-7b5a1c79c1fc" + "93a04604-223e-45ac-b66b-bdc881fb3670" ], "Cache-Control": [ "no-cache" @@ -114,16 +120,16 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14998" ], "x-ms-correlation-request-id": [ - "b36dffe8-d59c-4950-a012-6ef1bbddd696" + "cefb9573-1477-48a2-857c-0af83b87a2d0" ], "x-ms-routing-request-id": [ - "CENTRALINDIA:20170427T180326Z:b36dffe8-d59c-4950-a012-6ef1bbddd696" + "WESTUS2:20180111T214846Z:cefb9573-1477-48a2-857c-0af83b87a2d0" ], "Date": [ - "Thu, 27 Apr 2017 18:03:26 GMT" + "Thu, 11 Jan 2018 21:48:46 GMT" ] }, "StatusCode": 200 @@ -131,6 +137,6 @@ ], "Names": {}, "Variables": { - "SubscriptionId": "24fb23e3-6ba3-41f0-9b6e-e41131d5d61e" + "SubscriptionId": "5393f919-a68a-43d0-9063-4b2bda6bffdf" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json index ec7125603b436..6630cf0f38bc3 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations.json @@ -1,25 +1,25 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "757e0ac5-2c00-4eee-bee6-61eae90feea8" + "2bf84122-6fdf-4eff-b3e4-d59cfb96dbc9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ "321" @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fc414ea-410e-4600-9f7c-71bc36416f3f_131358074010838993" + "9fc414ea-410e-4600-9f7c-71bc36416f3f_131595074805181720" ], "x-ms-request-id": [ - "49942392-e4ad-43fc-ba58-30d5c3a44c71" + "b4dfd988-79fc-409f-a123-c9085033a303" ], "Cache-Control": [ "no-cache" @@ -53,22 +53,22 @@ "14999" ], "x-ms-correlation-request-id": [ - "d7417bae-c22e-4a22-b8e0-01889fffac1c" + "1c537796-72a2-48b7-b168-c18f095ae052" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183535Z:d7417bae-c22e-4a22-b8e0-01889fffac1c" + "UKSOUTH:20180118T031216Z:1c537796-72a2-48b7-b168-c18f095ae052" ], "Date": [ - "Thu, 27 Jul 2017 18:35:34 GMT" + "Thu, 18 Jan 2018 03:12:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:35:35Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:12:16Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -77,19 +77,19 @@ "99" ], "x-ms-client-request-id": [ - "25cf2f8d-eeb8-4099-8071-3c90935b54d7" + "d33b49fa-fdbf-48b6-beed-a3e428b3b2b0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118\",\r\n \"name\": \"crptestar7118\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:35:35Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333\",\r\n \"name\": \"crptestar8333\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:12:16Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "234" @@ -107,13 +107,13 @@ "1199" ], "x-ms-request-id": [ - "d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "0079cb22-e066-4cd9-b9a3-a656064759c6" ], "x-ms-correlation-request-id": [ - "d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "0079cb22-e066-4cd9-b9a3-a656064759c6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183538Z:d4982de3-c16f-4bd7-8a25-628ebd646bf8" + "UKSOUTH:20180118T031219Z:0079cb22-e066-4cd9-b9a3-a656064759c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,16 +122,16 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:35:38 GMT" + "Thu, 18 Jan 2018 03:12:18 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:36:24Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:13:06Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -140,19 +140,19 @@ "99" ], "x-ms-client-request-id": [ - "32e1917e-3ab9-4e56-8a54-9186864ab18b" + "e0eba26d-bd3d-4ffe-8309-953446cb819e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118\",\r\n \"name\": \"crptestar7118\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar7118\": \"2017-07-27 18:36:24Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333\",\r\n \"name\": \"crptestar8333\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar8333\": \"2018-01-18 03:13:06Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "234" @@ -170,13 +170,13 @@ "1198" ], "x-ms-request-id": [ - "dccf778e-e09e-4d19-8729-c9ce39879c32" + "35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "x-ms-correlation-request-id": [ - "dccf778e-e09e-4d19-8729-c9ce39879c32" + "35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183625Z:dccf778e-e09e-4d19-8729-c9ce39879c32" + "UKSOUTH:20180118T031307Z:35640462-8d2d-40b9-8b2a-ad25d01400ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -185,14 +185,14 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:24 GMT" + "Thu, 18 Jan 2018 03:13:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIxNjg3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXI0OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "RequestHeaders": { @@ -203,15 +203,15 @@ "95" ], "x-ms-client-request-id": [ - "d088b3b3-0863-40ce-b94f-6aacad8d0b5d" + "a7efee82-e184-4f01-865a-c3fe5b0e31cc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, @@ -220,6 +220,9 @@ "Content-Length": [ "0" ], + "Content-Type": [ + "application/json" + ], "Expires": [ "-1" ], @@ -229,54 +232,53 @@ "Retry-After": [ "17" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], "x-ms-request-id": [ - "341f631b-21a3-4e8e-82a0-f585208415fe" - ], - "Cache-Control": [ - "no-cache" + "da9c15ee-63c6-4078-958e-c4e65789911e" ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Storage/operations/42ea5cce-66fa-4e26-846c-ea99b90b3ac2?monitor=true&api-version=2015-06-15" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "341f631b-21a3-4e8e-82a0-f585208415fe" + "69afd349-2700-4632-9d69-44541c68ab19" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183542Z:341f631b-21a3-4e8e-82a0-f585208415fe" + "UKSOUTH:20180118T031225Z:69afd349-2700-4632-9d69-44541c68ab19" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:35:41 GMT" + "Thu, 18 Jan 2018 03:12:24 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c15ee-63c6-4078-958e-c4e65789911e?monitor=true&api-version=2015-06-15" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 202 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Storage/operations/42ea5cce-66fa-4e26-846c-ea99b90b3ac2?monitor=true&api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9vcGVyYXRpb25zLzQyZWE1Y2NlLTY2ZmEtNGUyNi04NDZjLWVhOTliOTBiM2FjMj9tb25pdG9yPXRydWUmYXBpLXZlcnNpb249MjAxNS0wNi0xNQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Storage/locations/southeastasia/asyncoperations/da9c15ee-63c6-4078-958e-c4e65789911e?monitor=true&api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3RvcmFnZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9hc3luY29wZXJhdGlvbnMvZGE5YzE1ZWUtNjNjNi00MDc4LTk1OGUtYzRlNjU3ODk5MTFlP21vbml0b3I9dHJ1ZSZhcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, "ResponseBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "72" + "95" ], "Content-Type": [ "application/json" @@ -288,56 +290,55 @@ "no-cache" ], "x-ms-request-id": [ - "4cadd47f-d57f-428c-be64-b47fa1a39e7f" - ], - "Cache-Control": [ - "no-cache" + "2a355176-f26b-4c56-a81e-b907855fe114" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14999" ], "x-ms-correlation-request-id": [ - "4cadd47f-d57f-428c-be64-b47fa1a39e7f" + "c4fb6dd2-3a95-48cc-b092-2c01f7deb332" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183612Z:4cadd47f-d57f-428c-be64-b47fa1a39e7f" + "UKSOUTH:20180118T031255Z:c4fb6dd2-3a95-48cc-b092-2c01f7deb332" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:12 GMT" + "Thu, 18 Jan 2018 03:12:55 GMT" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA2LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44796252-ba89-403e-876d-ab8b123f9067" + "2f4b7043-87e8-4148-b3e6-7b71e4b58f68" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar1687\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-07-27T18:35:41.9669325Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar1687.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar1687.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar1687.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar1687.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905\",\r\n \"name\": \"crptestar4905\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-18T03:12:23.6943066Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar4905.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar4905.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar4905.table.core.windows.net/\",\r\n \"file\": \"https://crptestar4905.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "753" + "744" ], "Content-Type": [ "application/json" @@ -349,56 +350,55 @@ "no-cache" ], "x-ms-request-id": [ - "ded0ae69-e383-4e61-9580-7fd9aff8022f" - ], - "Cache-Control": [ - "no-cache" + "aeea9021-c52b-4df9-9c93-5691e5ee162e" ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ "14998" ], "x-ms-correlation-request-id": [ - "ded0ae69-e383-4e61-9580-7fd9aff8022f" + "3f61703d-27e0-48ac-9017-94a2d72e2bc9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183622Z:ded0ae69-e383-4e61-9580-7fd9aff8022f" + "UKSOUTH:20180118T031305Z:3f61703d-27e0-48ac-9017-94a2d72e2bc9" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:22 GMT" + "Thu, 18 Jan 2018 03:13:05 GMT" + ], + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687?api-version=2015-06-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXIxNjg3P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905?api-version=2015-06-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5TdG9yYWdlL3N0b3JhZ2VBY2NvdW50cy9jcnB0ZXN0YXI0OTA1P2FwaS12ZXJzaW9uPTIwMTUtMDYtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6caa4d65-1109-45d8-b74c-c406888bf9d1" + "d67f7906-fcfa-487c-9fa1-ed10e5687494" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Storage.StorageManagementClient/4.1.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Storage/storageAccounts/crptestar1687\",\r\n \"location\": \"southeastasia\",\r\n \"name\": \"crptestar1687\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"creationTime\": \"2017-07-27T18:35:41.9669325Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar1687.blob.core.windows.net/\",\r\n \"file\": \"https://crptestar1687.file.core.windows.net/\",\r\n \"queue\": \"https://crptestar1687.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar1687.table.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"statusOfSecondary\": \"available\"\r\n },\r\n \"tags\": {},\r\n \"type\": \"Microsoft.Storage/storageAccounts\"\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Storage/storageAccounts/crptestar4905\",\r\n \"name\": \"crptestar4905\",\r\n \"type\": \"Microsoft.Storage/storageAccounts\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"accountType\": \"Standard_GRS\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"creationTime\": \"2018-01-18T03:12:23.6943066Z\",\r\n \"primaryEndpoints\": {\r\n \"blob\": \"https://crptestar4905.blob.core.windows.net/\",\r\n \"queue\": \"https://crptestar4905.queue.core.windows.net/\",\r\n \"table\": \"https://crptestar4905.table.core.windows.net/\",\r\n \"file\": \"https://crptestar4905.file.core.windows.net/\"\r\n },\r\n \"primaryLocation\": \"southeastasia\",\r\n \"statusOfPrimary\": \"available\",\r\n \"secondaryLocation\": \"eastasia\",\r\n \"statusOfSecondary\": \"unavailable\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "741" + "732" ], "Content-Type": [ "application/json" @@ -410,140 +410,37 @@ "no-cache" ], "x-ms-request-id": [ - "6a4251c8-bb01-4fd6-a0e9-e334c268ec47" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-Azure-Storage-Resource-Provider/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "6a4251c8-bb01-4fd6-a0e9-e334c268ec47" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183622Z:6a4251c8-bb01-4fd6-a0e9-e334c268ec47" + "1a73c6ee-2b25-4616-8cca-437402710409" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Date": [ - "Thu, 27 Jul 2017 18:36:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/VMDoesNotExist?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy9WTURvZXNOb3RFeGlzdD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7f29c809-3c31-4450-875e-f84d3cf65112" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "f6da6ac4-3655-4204-9377-557ba2f0ee95" + "x-ms-ratelimit-remaining-subscription-reads": [ + "14997" ], "x-ms-correlation-request-id": [ - "f6da6ac4-3655-4204-9377-557ba2f0ee95" + "8bf25595-8af0-427c-bdc1-a57364c58273" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183623Z:f6da6ac4-3655-4204-9377-557ba2f0ee95" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "UKSOUTH:20180118T031306Z:8bf25595-8af0-427c-bdc1-a57364c58273" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:36:23 GMT" - ] - }, - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/ASDoesNotExist?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvQVNEb2VzTm90RXhpc3Q/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f7bff310-7c60-47c1-9902-09b39c67b585" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "x-ms-correlation-request-id": [ - "67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183624Z:67ffb75d-db8a-4033-bc1f-125eb6e2ba36" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" + "Thu, 18 Jan 2018 03:13:05 GMT" ], - "Date": [ - "Thu, 27 Jul 2017 18:36:24 GMT" + "Server": [ + "Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0" ] }, - "StatusCode": 204 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -552,19 +449,19 @@ "207" ], "x-ms-client-request-id": [ - "5dfb3a7f-00e4-4331-8044-6fa485c3a895" + "dfa1d41d-6db0-42fe-bc87-3d65888a346d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"c511bab5-c345-4ec5-bcdc-3a942d472395\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"4a7e7439-1df2-4801-be39-34a41866d31d\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "711" @@ -582,10 +479,10 @@ "3" ], "x-ms-request-id": [ - "7ef47d93-7ced-46d7-8c20-6ad162d9d856" + "30af545b-0536-447d-9d54-fb41ec09f323" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/7ef47d93-7ced-46d7-8c20-6ad162d9d856?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/30af545b-0536-447d-9d54-fb41ec09f323?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -598,30 +495,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "168c9479-3be4-462a-8c57-caa7df6c7706" + "cb9d1de2-3e0a-4c13-ba55-e0683542bd8b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183631Z:168c9479-3be4-462a-8c57-caa7df6c7706" + "UKSOUTH:20180118T031314Z:cb9d1de2-3e0a-4c13-ba55-e0683542bd8b" ], "Date": [ - "Thu, 27 Jul 2017 18:36:31 GMT" + "Thu, 18 Jan 2018 03:13:13 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/7ef47d93-7ced-46d7-8c20-6ad162d9d856?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzdlZjQ3ZDkzLTdjZWQtNDZkNy04YzIwLTZhZDE2MmQ5ZDg1Nj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/30af545b-0536-447d-9d54-fb41ec09f323?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzMwYWY1NDViLTA1MzYtNDQ3ZC05ZDU0LWZiNDFlYzA5ZjMyMz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -640,7 +537,7 @@ "no-cache" ], "x-ms-request-id": [ - "6d7d2b55-72c8-4c25-8399-1a74e4fc460f" + "2dfded2d-38d9-42c3-89d0-d8e0c8cec7ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -656,31 +553,31 @@ "14999" ], "x-ms-correlation-request-id": [ - "4baea2d9-2a0e-4257-b78c-e6f308a98278" + "0bd7cb78-59e7-483d-9f00-bfeed21a0b16" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:4baea2d9-2a0e-4257-b78c-e6f308a98278" + "UKSOUTH:20180118T031345Z:0bd7cb78-59e7-483d-9f00-bfeed21a0b16" ], "Date": [ - "Thu, 27 Jul 2017 18:37:01 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "712" @@ -695,7 +592,7 @@ "no-cache" ], "x-ms-request-id": [ - "c0955f53-cb80-46f5-9a36-25a030474ce3" + "5a4a5df1-240c-4637-b092-cc870234c4a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -704,7 +601,7 @@ "no-cache" ], "ETag": [ - "W/\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\"" + "W/\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -714,37 +611,37 @@ "14998" ], "x-ms-correlation-request-id": [ - "55af7473-bca0-4181-ac5b-fb49f9c30467" + "e88d9788-2520-4cf9-ae51-fcb26522edb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:55af7473-bca0-4181-ac5b-fb49f9c30467" + "UKSOUTH:20180118T031345Z:e88d9788-2520-4cf9-ae51-fcb26522edb9" ], "Date": [ - "Thu, 27 Jul 2017 18:37:02 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDkxMTQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDY5MjU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d64cb803-7e1f-4541-a39f-198de0c88cb1" + "e40fec46-f079-4e55-ae94-e063e2c854a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip9114\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/publicIPAddresses/pip9114\",\r\n \"etag\": \"W/\\\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"891c7ef1-9edb-4236-9731-c5a71e978132\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn3940\",\r\n \"fqdn\": \"dn3940.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip6925\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/publicIPAddresses/pip6925\",\r\n \"etag\": \"W/\\\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"8a93aeb9-579a-4e79-bcca-242a31fced43\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn9588\",\r\n \"fqdn\": \"dn9588.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ "712" @@ -759,7 +656,7 @@ "no-cache" ], "x-ms-request-id": [ - "1a8aa797-e4c5-427f-aa8f-d6658b7e0aee" + "558e8650-ad04-4745-9095-3146a3cd3bf3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -768,7 +665,7 @@ "no-cache" ], "ETag": [ - "W/\"263aa4e7-44f2-4e51-879a-1905ff2ddce2\"" + "W/\"6ad3c4c1-675b-4374-96f8-01dd57ddc9a4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -778,22 +675,22 @@ "14997" ], "x-ms-correlation-request-id": [ - "3df25860-26bc-4b3f-af32-63407c82fdc6" + "8e3af5bb-7b32-4c13-964e-085eeafb2c78" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183702Z:3df25860-26bc-4b3f-af32-63407c82fdc6" + "UKSOUTH:20180118T031345Z:8e3af5bb-7b32-4c13-964e-085eeafb2c78" ], "Date": [ - "Thu, 27 Jul 2017 18:37:02 GMT" + "Thu, 18 Jan 2018 03:13:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1622\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn6918\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -802,19 +699,19 @@ "402" ], "x-ms-client-request-id": [ - "51c4afe4-aadc-496c-ae43-3183fdb811c5" + "b30f6cde-04d5-49f4-a8c0-8f8f054e40e6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn8809\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809\",\r\n \"etag\": \"W/\\\"4b5283c3-a99a-4970-92ba-742f8e44905f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"e4eecf33-aad3-4148-84fc-b38df5cce5f5\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"4b5283c3-a99a-4970-92ba-742f8e44905f\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn6408\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408\",\r\n \"etag\": \"W/\\\"8cd56d34-ed34-4aed-a793-82d87a683d5b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"d031c3f8-0368-4ae7-8faa-320b3aaabfdb\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"8cd56d34-ed34-4aed-a793-82d87a683d5b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1078" @@ -832,10 +729,10 @@ "3" ], "x-ms-request-id": [ - "45bcf67b-ccb0-4c7f-8722-00154547e27f" + "5289134a-c174-4de6-97c4-ceb0493f2a6a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/45bcf67b-ccb0-4c7f-8722-00154547e27f?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/5289134a-c174-4de6-97c4-ceb0493f2a6a?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -848,30 +745,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "02138050-5bde-4d82-8e5a-c5be5f344e08" + "86f2e503-0fd3-43cf-b264-b445a0198027" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183705Z:02138050-5bde-4d82-8e5a-c5be5f344e08" + "UKSOUTH:20180118T031347Z:86f2e503-0fd3-43cf-b264-b445a0198027" ], "Date": [ - "Thu, 27 Jul 2017 18:37:05 GMT" + "Thu, 18 Jan 2018 03:13:46 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/45bcf67b-ccb0-4c7f-8722-00154547e27f?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzQ1YmNmNjdiLWNjYjAtNGM3Zi04NzIyLTAwMTU0NTQ3ZTI3Zj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/5289134a-c174-4de6-97c4-ceb0493f2a6a?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzUyODkxMzRhLWMxNzQtNGRlNi05N2M0LWNlYjA0OTNmMmE2YT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -890,7 +787,7 @@ "no-cache" ], "x-ms-request-id": [ - "ef5e933f-3272-4f3b-9a76-51b0ffb4f490" + "6468fb72-b513-4870-a91a-bec36ce18d0b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -906,31 +803,31 @@ "14996" ], "x-ms-correlation-request-id": [ - "0db1fdf9-07a6-4b33-90ee-559bc214c648" + "96428410-5e75-4d1d-a321-fdf5263b7c43" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183736Z:0db1fdf9-07a6-4b33-90ee-559bc214c648" + "UKSOUTH:20180118T031418Z:96428410-5e75-4d1d-a321-fdf5263b7c43" ], "Date": [ - "Thu, 27 Jul 2017 18:37:35 GMT" + "Thu, 18 Jan 2018 03:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn8809\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e4eecf33-aad3-4148-84fc-b38df5cce5f5\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn6408\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"d031c3f8-0368-4ae7-8faa-320b3aaabfdb\",\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 \"10.1.2.4\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "1080" @@ -945,7 +842,7 @@ "no-cache" ], "x-ms-request-id": [ - "879bcfbd-56e0-43bc-8b68-220746efac57" + "14e04e17-fdb4-4f24-b9eb-89d5a3556f97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +851,7 @@ "no-cache" ], "ETag": [ - "W/\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\"" + "W/\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -964,37 +861,37 @@ "14995" ], "x-ms-correlation-request-id": [ - "71fc571a-095b-4b1c-b7e0-d5a9df542527" + "0ea983be-6d45-4b7d-8e36-5e56f2baf72b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183736Z:71fc571a-095b-4b1c-b7e0-d5a9df542527" + "UKSOUTH:20180118T031419Z:0ea983be-6d45-4b7d-8e36-5e56f2baf72b" ], "Date": [ - "Thu, 27 Jul 2017 18:37:36 GMT" + "Thu, 18 Jan 2018 03:14:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjg4MDkvc3VibmV0cy9zbjE2MjI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjY0MDgvc3VibmV0cy9zbjY5MTg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9984ab8a-c793-4e37-9bce-d313b48062e2" + "7b858a3a-0acd-4c1d-b7a5-82d9b2c85309" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn1622\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn6918\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "340" @@ -1009,7 +906,7 @@ "no-cache" ], "x-ms-request-id": [ - "0b261687-86a0-4cd9-8a60-603986db341a" + "ae8df1a4-e081-4060-8a73-4b1ead029b08" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1018,7 +915,7 @@ "no-cache" ], "ETag": [ - "W/\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\"" + "W/\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1028,46 +925,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "da4cad7d-da7a-4d54-9f5e-d18dbc05bce9" + "05c8b587-9fbf-47b8-86dc-be2df9d1e157" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183737Z:da4cad7d-da7a-4d54-9f5e-d18dbc05bce9" + "UKSOUTH:20180118T031419Z:05c8b587-9fbf-47b8-86dc-be2df9d1e157" ], "Date": [ - "Thu, 27 Jul 2017 18:37:36 GMT" + "Thu, 18 Jan 2018 03:14:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1622\",\r\n \"etag\": \"W/\\\"f761b6d7-b24d-4fa0-8cad-9d516c32d1ea\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n }\r\n },\r\n \"name\": \"ip582\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn6918\",\r\n \"etag\": \"W/\\\"a791779e-7d82-4595-8fec-a3ab02e7d0c4\\\"\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n }\r\n },\r\n \"name\": \"ip2095\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "706" + "707" ], "x-ms-client-request-id": [ - "10c3d771-c05e-4b2e-9b52-35f83404bcf2" + "0f589868-5115-4f07-ae00-904e1c1caa76" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1079,10 +976,10 @@ "no-cache" ], "x-ms-request-id": [ - "b3350030-07ae-4e45-83c1-4146382660b9" + "53e53106-138a-430a-b9e1-3294bf6e5d36" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/b3350030-07ae-4e45-83c1-4146382660b9?api-version=2017-03-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Network/locations/southeastasia/operations/53e53106-138a-430a-b9e1-3294bf6e5d36?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,37 +992,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "0c503235-1cf2-4584-8ec4-f270b0835e8f" + "d089283b-587e-42b3-b413-32c606cd144a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:0c503235-1cf2-4584-8ec4-f270b0835e8f" + "UKSOUTH:20180118T031422Z:d089283b-587e-42b3-b413-32c606cd144a" ], "Date": [ - "Thu, 27 Jul 2017 18:37:39 GMT" + "Thu, 18 Jan 2018 03:14:21 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1137,7 +1034,7 @@ "no-cache" ], "x-ms-request-id": [ - "5ba4d158-bc23-4a43-a78c-e1e8128c15b7" + "e3a6c720-c65a-4f33-a7db-17a222086349" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1146,7 +1043,7 @@ "no-cache" ], "ETag": [ - "W/\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\"" + "W/\"15471045-1781-47ea-a5f8-3be496a700bd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1156,40 +1053,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "683bc952-fc44-4668-be93-211cbf3bb534" + "f086fbfd-0401-4e5c-8ea9-522b83fb9089" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:683bc952-fc44-4668-be93-211cbf3bb534" + "UKSOUTH:20180118T031422Z:f086fbfd-0401-4e5c-8ea9-522b83fb9089" ], "Date": [ - "Thu, 27 Jul 2017 18:37:39 GMT" + "Thu, 18 Jan 2018 03:14:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzY2MzI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzczMDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "aec8578c-172c-492a-a762-eaa729541284" + "05d09a24-3268-4d4e-9bf5-d4aef35294ee" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic6632\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"e91a48ae-9cd1-4334-921e-f916c6339233\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip582\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632/ipConfigurations/ip582\",\r\n \"etag\": \"W/\\\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/virtualNetworks/vn8809/subnets/sn1622\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"gph43zgtvjeedbh2wog5lthf4f.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic7306\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"87bb6a94-061f-45b2-b3fd-1f5c56f3a5a5\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2095\",\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306/ipConfigurations/ip2095\",\r\n \"etag\": \"W/\\\"15471045-1781-47ea-a5f8-3be496a700bd\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/virtualNetworks/vn6408/subnets/sn6918\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"5dbtdudiaptuvd3kgiftvkv51d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1498" + "1500" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1201,7 +1098,7 @@ "no-cache" ], "x-ms-request-id": [ - "c9f096ef-5ef9-47b1-b87d-54c19a2d33cb" + "22b565bb-1eaf-4533-b952-9ec9687407b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1210,7 +1107,7 @@ "no-cache" ], "ETag": [ - "W/\"9e86aa2a-5222-4c62-88da-3f44446cbc4b\"" + "W/\"15471045-1781-47ea-a5f8-3be496a700bd\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -1220,20 +1117,20 @@ "14992" ], "x-ms-correlation-request-id": [ - "fce6cd55-e177-4850-b3fc-0c700c7c91cf" + "fac7473c-92a1-44bc-9721-87522952ed5c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183740Z:fce6cd55-e177-4850-b3fc-0c700c7c91cf" + "UKSOUTH:20180118T031422Z:fac7473c-92a1-44bc-9721-87522952ed5c" ], "Date": [ - "Thu, 27 Jul 2017 18:37:40 GMT" + "Thu, 18 Jan 2018 03:14:22 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzNjUxP2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MDY5P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { @@ -1244,19 +1141,19 @@ "229" ], "x-ms-client-request-id": [ - "763c33b8-41c9-4109-8e33-34f55668e564" + "ff727ae2-c9af-4f4c-a555-bcf1d5cfb4ce" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651\",\r\n \"name\": \"as3651\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 3\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069\",\r\n \"name\": \"as4069\",\r\n \"sku\": {\r\n \"name\": \"Classic\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "444" @@ -1270,14 +1167,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;239,Microsoft.Compute/PutVM30Min;1197" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "24c1f260-e36c-4b37-a20c-79a4daa333d0" + "551836ba-b4fc-476b-b492-c48bbfd9a9e7" ], "Cache-Control": [ "no-cache" @@ -1287,25 +1187,25 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "cc383b92-be9a-4aa4-9bf1-8816da97e166" + "87433bd4-bea7-462e-9382-73872a109d48" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183746Z:cc383b92-be9a-4aa4-9bf1-8816da97e166" + "UKSOUTH:20180118T031428Z:87433bd4-bea7-462e-9382-73872a109d48" ], "Date": [ - "Thu, 27 Jul 2017 18:37:45 GMT" + "Thu, 18 Jan 2018 03:14:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\"\r\n }\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -1314,19 +1214,19 @@ "1216" ], "x-ms-client-request-id": [ - "e7e899ca-bb2f-4e93-905c-f63d6d9c449b" + "281cd58b-2a1e-4cdb-8afe-30bf87c29616" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1617" @@ -1341,16 +1241,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;238,Microsoft.Compute/PutVM30Min;1196" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "8468c57d-cfef-4b03-a802-3992156a8799" + "354ec66d-b027-4828-badb-d6111af9ad08" ], "Cache-Control": [ "no-cache" @@ -1360,37 +1263,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "ecfc81f8-df2b-4989-9bee-3cab52524e06" + "c9b82f1a-4c2a-4d49-a681-bb22f77d5cf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183749Z:ecfc81f8-df2b-4989-9bee-3cab52524e06" + "UKSOUTH:20180118T031430Z:c9b82f1a-4c2a-4d49-a681-bb22f77d5cf8" ], "Date": [ - "Thu, 27 Jul 2017 18:37:48 GMT" + "Thu, 18 Jan 2018 03:14:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1401,14 +1304,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11998,Microsoft.Compute/GetOperation30Min;23959" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "45c3af0b-86e3-4cff-9929-01d2cdc7ec0a" + "009cdac1-d663-416c-a5d7-c6e8daed740a" ], "Cache-Control": [ "no-cache" @@ -1418,37 +1324,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14991" ], "x-ms-correlation-request-id": [ - "a47c1318-602a-4cd3-bdcd-a755667dd5ae" + "1d9382c2-977d-4c9b-ae9d-c05b7b87d10f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183820Z:a47c1318-602a-4cd3-bdcd-a755667dd5ae" + "UKSOUTH:20180118T031501Z:1d9382c2-977d-4c9b-ae9d-c05b7b87d10f" ], "Date": [ - "Thu, 27 Jul 2017 18:38:19 GMT" + "Thu, 18 Jan 2018 03:15:00 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1459,14 +1365,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11995,Microsoft.Compute/GetOperation30Min;23956" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "f3fe947a-eb17-4880-89ae-565d9d0330bf" + "dfffed73-cfd5-4c38-8f76-f143bdfe6833" ], "Cache-Control": [ "no-cache" @@ -1476,37 +1385,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" + "14990" ], "x-ms-correlation-request-id": [ - "a03ce3df-44af-41e2-84f5-839eff8deeef" + "d740d711-16a7-4d03-9e64-41247bffecc0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183850Z:a03ce3df-44af-41e2-84f5-839eff8deeef" + "UKSOUTH:20180118T031533Z:d740d711-16a7-4d03-9e64-41247bffecc0" ], "Date": [ - "Thu, 27 Jul 2017 18:38:50 GMT" + "Thu, 18 Jan 2018 03:15:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1517,14 +1426,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11992,Microsoft.Compute/GetOperation30Min;23953" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "c6c55281-171b-4999-b5d1-772fdd354f6a" + "534da6b0-11b5-4c1a-a763-3309fb6b15fe" ], "Cache-Control": [ "no-cache" @@ -1534,37 +1446,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" + "14989" ], "x-ms-correlation-request-id": [ - "848ead1c-44f2-4422-9356-314d0a6c0c9a" + "7252e289-9d87-48d6-b2ae-a92e433c65b2" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183920Z:848ead1c-44f2-4422-9356-314d0a6c0c9a" + "UKSOUTH:20180118T031609Z:7252e289-9d87-48d6-b2ae-a92e433c65b2" ], "Date": [ - "Thu, 27 Jul 2017 18:39:20 GMT" + "Thu, 18 Jan 2018 03:16:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1575,14 +1487,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11989,Microsoft.Compute/GetOperation30Min;23950" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "3564089f-7c1d-4adf-b827-543d08cbd5b4" + "872ea7fe-0726-42a6-82f0-b0cbcf9ed150" ], "Cache-Control": [ "no-cache" @@ -1592,37 +1507,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" + "14988" ], "x-ms-correlation-request-id": [ - "decef3c6-2065-4e59-82b8-ca44281db963" + "a34d0cf2-f5bd-4f86-86ff-1c6f0625821e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T183950Z:decef3c6-2065-4e59-82b8-ca44281db963" + "UKSOUTH:20180118T031643Z:a34d0cf2-f5bd-4f86-86ff-1c6f0625821e" ], "Date": [ - "Thu, 27 Jul 2017 18:39:50 GMT" + "Thu, 18 Jan 2018 03:16:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1633,14 +1548,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11986,Microsoft.Compute/GetOperation30Min;23947" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "44bcc51b-378a-48db-82d0-1ed31a747121" + "c4d8eb5f-28d5-406f-8c33-264fb3dad6d3" ], "Cache-Control": [ "no-cache" @@ -1650,37 +1568,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" + "14987" ], "x-ms-correlation-request-id": [ - "baf241a8-33fb-4bb8-87dc-7eb78883af63" + "f5554b02-b8d1-4881-9921-cff5e84d93f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184021Z:baf241a8-33fb-4bb8-87dc-7eb78883af63" + "UKSOUTH:20180118T031718Z:f5554b02-b8d1-4881-9921-cff5e84d93f0" ], "Date": [ - "Thu, 27 Jul 2017 18:40:20 GMT" + "Thu, 18 Jan 2018 03:17:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1691,14 +1609,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11984,Microsoft.Compute/GetOperation30Min;23944" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "1f35ed02-f18f-41d5-9cf2-b6f33af6320c" + "45b80d9d-257d-4858-ac72-48d5e36b903b" ], "Cache-Control": [ "no-cache" @@ -1708,37 +1629,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14994" + "14986" ], "x-ms-correlation-request-id": [ - "97717317-d3e9-4086-b494-bac97f481d64" + "750cf97c-f6b7-41ab-9e4a-ed02bd89f280" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184051Z:97717317-d3e9-4086-b494-bac97f481d64" + "UKSOUTH:20180118T031753Z:750cf97c-f6b7-41ab-9e4a-ed02bd89f280" ], "Date": [ - "Thu, 27 Jul 2017 18:40:50 GMT" + "Thu, 18 Jan 2018 03:17:53 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1749,14 +1670,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11984,Microsoft.Compute/GetOperation30Min;23941" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "ee8ab68a-d2a2-4bf6-aceb-99942703d11c" + "b9a7c71f-b3ec-4a7d-926d-a720c1df6808" ], "Cache-Control": [ "no-cache" @@ -1766,37 +1690,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14985" ], "x-ms-correlation-request-id": [ - "dc15c062-bf11-4774-bb64-4b8c2faf07b2" + "24ab92b9-d3c2-443b-9794-ff402ab6a728" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184121Z:dc15c062-bf11-4774-bb64-4b8c2faf07b2" + "UKSOUTH:20180118T031825Z:24ab92b9-d3c2-443b-9794-ff402ab6a728" ], "Date": [ - "Thu, 27 Jul 2017 18:41:21 GMT" + "Thu, 18 Jan 2018 03:18:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1807,14 +1731,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11983,Microsoft.Compute/GetOperation30Min;23938" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "79a597b2-8f59-4f42-b422-85313b525246" + "68f24f73-c9ae-4684-a462-e70a25a8c4b3" ], "Cache-Control": [ "no-cache" @@ -1824,37 +1751,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14984" ], "x-ms-correlation-request-id": [ - "455bb4f6-ace1-40a1-a22a-5266e098319a" + "18d6ac33-f65e-4c53-9db9-6feedc8e433a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184151Z:455bb4f6-ace1-40a1-a22a-5266e098319a" + "UKSOUTH:20180118T031858Z:18d6ac33-f65e-4c53-9db9-6feedc8e433a" ], "Date": [ - "Thu, 27 Jul 2017 18:41:51 GMT" + "Thu, 18 Jan 2018 03:18:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1865,14 +1792,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11983,Microsoft.Compute/GetOperation30Min;23935" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "0a13cd88-1ddf-45f8-9859-6b25b6889c95" + "813bf847-9a09-4668-b6a2-9233b1347a29" ], "Cache-Control": [ "no-cache" @@ -1882,37 +1812,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14983" ], "x-ms-correlation-request-id": [ - "e17bd09e-1dfd-4db0-938b-800ce7b783f3" + "b5d86195-e184-4bcb-9e70-1afb97aec669" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184221Z:e17bd09e-1dfd-4db0-938b-800ce7b783f3" + "UKSOUTH:20180118T031934Z:b5d86195-e184-4bcb-9e70-1afb97aec669" ], "Date": [ - "Thu, 27 Jul 2017 18:42:21 GMT" + "Thu, 18 Jan 2018 03:19:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1923,14 +1853,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11986,Microsoft.Compute/GetOperation30Min;23940" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "d2dc751c-94be-4df8-bafe-0340ac228b76" + "145b7abf-3832-4326-b81b-edcb1c1174e3" ], "Cache-Control": [ "no-cache" @@ -1943,34 +1876,34 @@ "14990" ], "x-ms-correlation-request-id": [ - "20cdd3a0-efe8-4b3a-ba20-9f6071b2aff6" + "4132a19b-0523-40e3-be73-42f170ab96c3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184252Z:20cdd3a0-efe8-4b3a-ba20-9f6071b2aff6" + "UKSOUTH:20180118T032008Z:4132a19b-0523-40e3-be73-42f170ab96c3" ], "Date": [ - "Thu, 27 Jul 2017 18:42:51 GMT" + "Thu, 18 Jan 2018 03:20:08 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1981,14 +1914,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11985,Microsoft.Compute/GetOperation30Min;23937" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "9274e630-9000-4e90-a80a-cba8a878516c" + "cdb6ac34-77b9-4389-afe7-a350432f0dc5" ], "Cache-Control": [ "no-cache" @@ -2001,34 +1937,34 @@ "14989" ], "x-ms-correlation-request-id": [ - "e9c484e7-700b-4d31-9867-8bc0525017cf" + "c307d0f5-508e-4fa2-805f-06008f194c60" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184322Z:e9c484e7-700b-4d31-9867-8bc0525017cf" + "UKSOUTH:20180118T032039Z:c307d0f5-508e-4fa2-805f-06008f194c60" ], "Date": [ - "Thu, 27 Jul 2017 18:43:21 GMT" + "Thu, 18 Jan 2018 03:20:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/providers/Microsoft.Compute/locations/southeastasia/operations/354ec66d-b027-4828-badb-d6111af9ad08?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzM1NGVjNjZkLWIwMjctNDgyOC1iYWRiLWQ2MTExYWY5YWQwOD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T19:14:29.5015216-08:00\",\r\n \"endTime\": \"2018-01-17T19:20:53.2153927-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"354ec66d-b027-4828-badb-d6111af9ad08\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2039,14 +1975,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11985,Microsoft.Compute/GetOperation30Min;23934" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "c063ebcc-c44a-4b9a-b803-c9b9e60cf432" + "5df4d07c-6cc7-46d3-94d9-5d2e0231f6bb" ], "Cache-Control": [ "no-cache" @@ -2059,34 +1998,34 @@ "14988" ], "x-ms-correlation-request-id": [ - "72c11de4-3f2c-4e02-9122-c2c037ede3a7" + "92770d33-0ecd-4fe8-8c65-2055271a1070" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184352Z:72c11de4-3f2c-4e02-9122-c2c037ede3a7" + "UKSOUTH:20180118T032110Z:92770d33-0ecd-4fe8-8c65-2055271a1070" ], "Date": [ - "Thu, 27 Jul 2017 18:43:51 GMT" + "Thu, 18 Jan 2018 03:21:09 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2097,14 +2036,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4798,Microsoft.Compute/LowCostGet30Min;38385" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "7922c8ca-0761-43c2-a90b-e1113b880a3a" + "078dc269-d836-4fe3-b034-3eca52cf94ac" ], "Cache-Control": [ "no-cache" @@ -2117,34 +2059,40 @@ "14987" ], "x-ms-correlation-request-id": [ - "2b6fb288-8a29-436f-bd89-af6908fbc513" + "ddefbf7a-c6a8-4c73-8d5a-1190e54c274e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184422Z:2b6fb288-8a29-436f-bd89-af6908fbc513" + "UKSOUTH:20180118T032119Z:ddefbf7a-c6a8-4c73-8d5a-1190e54c274e" ], "Date": [ - "Thu, 27 Jul 2017 18:44:22 GMT" + "Thu, 18 Jan 2018 03:21:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "aebf6b24-ad91-44ec-aac7-5cf5ce35a1ef" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1646" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2155,14 +2103,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4795,Microsoft.Compute/LowCostGet30Min;38382" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "848b5e8a-929e-4234-b2be-557fb0ff9b5f" + "c32f1c93-d11a-4b53-92a8-8ff9decfa065" ], "Cache-Control": [ "no-cache" @@ -2175,34 +2126,40 @@ "14986" ], "x-ms-correlation-request-id": [ - "f4d67bf0-22bd-4ebd-8fe6-829c55ffa2fd" + "f10afe4b-18e3-4e4c-89c6-afecc7e8bc2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184453Z:f4d67bf0-22bd-4ebd-8fe6-829c55ffa2fd" + "UKSOUTH:20180118T032131Z:f10afe4b-18e3-4e4c-89c6-afecc7e8bc2b" ], "Date": [ - "Thu, 27 Jul 2017 18:44:52 GMT" + "Thu, 18 Jan 2018 03:21:30 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDI/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "3a11cb5a-9aa9-4da6-9e3b-d2e20a33e31a" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.845\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and waiting for network issue to be resolved.\",\r\n \"time\": \"2018-01-17T19:26:04-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:14:29.9702986-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"sg1prdapp07\",\r\n \"fabricTenantName\": \"9fba52ae-3bc1-4560-90ad-474c5df20a37\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:20:53.184134-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "3146" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2213,14 +2170,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4795,Microsoft.Compute/LowCostGet30Min;38380" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "afa7dfb1-d770-4f8d-a8a9-e7fc6491007a" + "db338a2f-2bb2-42ba-a088-f8f0f95730ec" ], "Cache-Control": [ "no-cache" @@ -2230,37 +2190,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14999" ], "x-ms-correlation-request-id": [ - "1c4e5ab5-c69e-43d2-8341-c6eab9d4fb79" + "e6cc5a68-58c7-4bfe-adf7-2d786ff031df" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184523Z:1c4e5ab5-c69e-43d2-8341-c6eab9d4fb79" + "UKSOUTH:20180118T032632Z:e6cc5a68-58c7-4bfe-adf7-2d786ff031df" ], "Date": [ - "Thu, 27 Jul 2017 18:45:22 GMT" + "Thu, 18 Jan 2018 03:26:31 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDIvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "5853dd12-2352-434d-a021-6199be193f15" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.845\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and waiting for network issue to be resolved.\",\r\n \"time\": \"2018-01-17T19:26:04-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:14:29.9702986-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"sg1prdapp07\",\r\n \"fabricTenantName\": \"9fba52ae-3bc1-4560-90ad-474c5df20a37\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T19:20:53.184134-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1285" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2271,14 +2237,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4799,Microsoft.Compute/GetInstanceView30Min;23999" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "9afa7ea9-6515-45c0-99c6-c4b8465f992a" + "12baa3e1-2e7d-4671-b628-a82e8181f519" ], "Cache-Control": [ "no-cache" @@ -2288,37 +2257,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "14998" ], "x-ms-correlation-request-id": [ - "350ce9e7-f054-418f-b4a0-8d7b5b60f73e" + "c8a7a747-309e-4511-b50a-d805f611d705" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184553Z:350ce9e7-f054-418f-b4a0-8d7b5b60f73e" + "UKSOUTH:20180118T032644Z:c8a7a747-309e-4511-b50a-d805f611d705" ], "Date": [ - "Thu, 27 Jul 2017 18:45:52 GMT" + "Thu, 18 Jan 2018 03:26:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b40fe4a9-bd60-4c7d-a5ae-9c888e7e76c0" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"283b175f-ecaf-4f54-b573-be8a51898b72\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/AS4069\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar4905.blob.core.windows.net/crptestar1456/oscrptestar8917.vhd\"\r\n },\r\n \"caching\": \"None\",\r\n \"diskSizeGB\": 127\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Network/networkInterfaces/nic7306\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642\",\r\n \"name\": \"vm1642\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "1867" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2329,14 +2304,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;799" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "f729f292-cd01-4c1f-a2e8-1f3f238130cf" + "2bb6cfb9-6804-4431-8311-87d8b253b5e4" ], "Cache-Control": [ "no-cache" @@ -2346,37 +2324,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" + "14997" ], "x-ms-correlation-request-id": [ - "c05a1e01-42a5-4008-bacf-ea4c1433428b" + "84e561a0-2061-4f0b-b667-3acb8c915f6a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184623Z:c05a1e01-42a5-4008-bacf-ea4c1433428b" + "UKSOUTH:20180118T032644Z:84e561a0-2061-4f0b-b667-3acb8c915f6a" ], "Date": [ - "Thu, 27 Jul 2017 18:46:22 GMT" + "Thu, 18 Jan 2018 03:26:44 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/8468c57d-cfef-4b03-a802-3992156a8799?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg0NjhjNTdkLWNmZWYtNGIwMy1hODAyLTM5OTIxNTZhODc5OT9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/virtualMachines/vm1642/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE2NDIvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "c887f3ca-6795-4dfe-959a-542c70b9aa96" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:37:49.901601-07:00\",\r\n \"endTime\": \"2017-07-27T11:46:26.6692635-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8468c57d-cfef-4b03-a802-3992156a8799\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "183" + "2621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2387,14 +2371,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4793,Microsoft.Compute/LowCostGet30Min;38378" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "4b1e22c7-b648-4e0e-b0ca-4dffbc0c4be2" + "111c4b16-6337-4ddb-87dc-0084aca73891" ], "Cache-Control": [ "no-cache" @@ -2404,37 +2391,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14996" ], "x-ms-correlation-request-id": [ - "8cdfa68d-b37b-4ace-9c09-e762c21bba90" + "38c6f544-c2a6-4d92-8722-bcecaf92c6bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184653Z:8cdfa68d-b37b-4ace-9c09-e762c21bba90" + "UKSOUTH:20180118T032645Z:38c6f544-c2a6-4d92-8722-bcecaf92c6bd" ], "Date": [ - "Thu, 27 Jul 2017 18:46:52 GMT" + "Thu, 18 Jan 2018 03:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourceGroups/crptestar8333/providers/Microsoft.Compute/availabilitySets/as4069/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjgzMzMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM0MDY5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "b76d36e4-6445-4948-8a68-a01ad69c5221" + ], + "accept-language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1618" + "2621" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2445,14 +2438,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4792,Microsoft.Compute/LowCostGet30Min;38377" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "6128d483-fbbc-4675-ba59-14895ca4b533_131580221711548035" ], "x-ms-request-id": [ - "4b930171-cc8a-4612-8925-7aa729cd853b" + "47c87b5f-3d03-404e-9274-dff13ace066d" ], "Cache-Control": [ "no-cache" @@ -2462,46 +2458,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14995" ], "x-ms-correlation-request-id": [ - "705ce5c9-7ea2-4878-a704-2d3401b6aeb8" + "12397107-c461-4175-a926-1f2923d90620" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T184654Z:705ce5c9-7ea2-4878-a704-2d3401b6aeb8" + "UKSOUTH:20180118T032645Z:12397107-c461-4175-a926-1f2923d90620" ], "Date": [ - "Thu, 27 Jul 2017 18:46:54 GMT" + "Thu, 18 Jan 2018 03:26:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/resourcegroups/crptestar8333?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNzMwODRhOWUtZTc0MC00YzdkLThjMTEtNmIzYzBlYzQ4NmIxL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjgzMzM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5b703a08-71d0-4762-b1d7-9f595efab92d" + "a3565d5c-877a-4c81-8fcc-373c6f3af15b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", + "ResponseBody": "", "ResponseHeaders": { "Content-Length": [ - "1618" - ], - "Content-Type": [ - "application/json; charset=utf-8" + "0" ], "Expires": [ "-1" @@ -2509,954 +2502,64 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "cd86ce8d-28d7-4fa1-822c-5d9b0d6447bd" - ], - "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": [ - "c73dcbe3-9933-4679-a7ed-772c07c3ddc1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184654Z:c73dcbe3-9933-4679-a7ed-772c07c3ddc1" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:54 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "918eb6f4-596d-4672-9e79-9a522a694678" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:46:56-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:37:50.4486907-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:46:26.6536322-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "2817" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "1d7a3f0b-ac58-4984-9395-db7210a13cdf" - ], - "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": [ - "432d5dde-4f38-4296-a3ce-52531aa98236" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:432d5dde-4f38-4296-a3ce-52531aa98236" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDgvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "9d45e33c-9358-48f6-9870-b7ed8ceca26b" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:46:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:37:50.4486907-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:46:26.6536322-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1012" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "94a7fb42-453a-4775-a5f1-4dcc9f5f1f6e" - ], - "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": [ - "bcdb7ca4-b950-4abc-a682-04f8c581f058" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:bcdb7ca4-b950-4abc-a682-04f8c581f058" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "42283084-73cc-4d64-8191-4863d7aa92c4" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"439df261-6811-450a-ab2f-9c6976c804c3\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/AS3651\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"vhd\": {\r\n \"uri\": \"https://crptestar1687.blob.core.windows.net/crptestar1712/oscrptestar6419.vhd\"\r\n },\r\n \"caching\": \"None\"\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Network/networkInterfaces/nic6632\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208\",\r\n \"name\": \"vm5208\"\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "1835" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "ef68501b-5335-4757-bc02-e70d43ee912d" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "d78487e7-06ea-4d8c-80f4-868cd45ce887" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:d78487e7-06ea-4d8c-80f4-868cd45ce887" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDgvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "dd221bae-c5ef-4267-b086-0c2ce13820bd" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "8824" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e0a467d5-b636-4472-9e02-eea3f7f2e772" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "3bef6892-fcde-4a66-8b1f-e44792e50f27" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184655Z:3bef6892-fcde-4a66-8b1f-e44792e50f27" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:55 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/availabilitySets/as3651/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzNjUxL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "6992355a-7882-42a2-b9e9-3152aac059cb" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "8824" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "96730abe-a17e-4d15-9c65-32d9d926bcc9" - ], - "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": [ - "c5deda62-5821-4927-b9f3-68e71bbe76a5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184656Z:c5deda62-5821-4927-b9f3-68e71bbe76a5" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:56 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar7118/providers/Microsoft.Compute/virtualMachines/vm5208?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjcxMTgvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTUyMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a7a6478e-cab3-4adb-a7cd-8455987b11ce" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "81fd460b-5284-41d8-bad5-5be8451b1607" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "36f77dfc-72f1-4c65-85d6-ccc28defb522" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184657Z:36f77dfc-72f1-4c65-85d6-ccc28defb522" - ], - "Date": [ - "Thu, 27 Jul 2017 18:46:57 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "893cfb01-ce6f-49a0-9242-585f3efd4191" - ], - "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": [ - "5bf668a9-f6d6-4235-99df-d563ea79b872" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184727Z:5bf668a9-f6d6-4235-99df-d563ea79b872" - ], - "Date": [ - "Thu, 27 Jul 2017 18:47:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e33e7e60-0a98-422a-93a6-56b732dcec3f" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" - ], - "x-ms-correlation-request-id": [ - "229e4e93-31e2-445a-b4ca-a684767ab6ef" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184757Z:229e4e93-31e2-445a-b4ca-a684767ab6ef" - ], - "Date": [ - "Thu, 27 Jul 2017 18:47:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "487bc54b-5b0b-4dd9-b9de-04eadfac646e" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14972" - ], - "x-ms-correlation-request-id": [ - "593a383c-f3b0-408d-b71a-a0253ee648bc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184828Z:593a383c-f3b0-408d-b71a-a0253ee648bc" - ], - "Date": [ - "Thu, 27 Jul 2017 18:48:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/81fd460b-5284-41d8-bad5-5be8451b1607?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzgxZmQ0NjBiLTUyODQtNDFkOC1iYWQ1LTViZTg0NTFiMTYwNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:46:59.2421833-07:00\",\r\n \"endTime\": \"2017-07-27T11:48:39.8834265-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"81fd460b-5284-41d8-bad5-5be8451b1607\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "57acfab1-6900-45a8-a258-fede0b7ae4f3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14971" - ], - "x-ms-correlation-request-id": [ - "a2197183-2240-4143-9b5a-f215403251b1" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T184858Z:a2197183-2240-4143-9b5a-f215403251b1" - ], - "Date": [ - "Thu, 27 Jul 2017 18:48:57 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar7118?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjcxMTg/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "0d7eeadf-5e46-471c-94cb-e65af7f45d38" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "x-ms-correlation-request-id": [ - "ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T184902Z:ea448fea-793f-43e0-859f-ce7ed28ca7ad" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:49:01 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "x-ms-correlation-request-id": [ - "ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T184932Z:ae8892a8-62bc-446d-97e5-8dec52c05a9b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:49:32 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "x-ms-correlation-request-id": [ - "a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185003Z:a0a249d7-3374-4303-b6d3-82d45c229bc3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:50:02 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "x-ms-correlation-request-id": [ - "9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185033Z:9a3d536c-c68e-498c-89af-17c06ee07bb3" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "x-ms-correlation-request-id": [ + "560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "x-ms-routing-request-id": [ + "UKSOUTH:20180118T032648Z:560c8427-7d5d-4fb8-9716-14b0aa55a748" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:50:32 GMT" + "Thu, 18 Jan 2018 03:26:48 GMT" ], "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" + "https://management.azure.com/subscriptions/73084a9e-e740-4c7d-8c11-6b3c0ec486b1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI4MzMzLVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI3MTE4LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkkzTVRFNExWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "x-ms-correlation-request-id": [ - "b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T185103Z:b3fbef1b-241c-4c25-8210-443c0c8deb8a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:51:02 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar7118", - "crptestar1687", - "as3651" + "crptestar8333", + "crptestar4905", + "as4069" ], "CreatePublicIP": [ - "pip9114", - "dn3940" + "pip6925", + "dn9588" ], "CreateVNET": [ - "vn8809", - "sn1622" + "vn6408", + "sn6918" ], "CreateNIC": [ - "nic6632", - "ip582" + "nic7306", + "ip2095" ], "CreateDefaultVMInput": [ - "crptestar1712", - "crptestar5655", - "crptestar6419", - "vm5208", - "Microsoft.Compute/virtualMachines7957" + "crptestar1456", + "crptestar6434", + "crptestar8917", + "vm1642", + "Microsoft.Compute/virtualMachines9481" ] }, "Variables": { - "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" + "SubscriptionId": "73084a9e-e740-4c7d-8c11-6b3c0ec486b1" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json index cda318aeeab08..a55318b09fdc9 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks.json @@ -1,28 +1,28 @@ { "Entries": [ { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/SoutheastAsia/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvU291dGhlYXN0QXNpYS9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/publishers/MicrosoftWindowsServer/artifacttypes/vmimage/offers/WindowsServer/skus/2012-R2-Datacenter/versions?$top=1&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9wdWJsaXNoZXJzL01pY3Jvc29mdFdpbmRvd3NTZXJ2ZXIvYXJ0aWZhY3R0eXBlcy92bWltYWdlL29mZmVycy9XaW5kb3dzU2VydmVyL3NrdXMvMjAxMi1SMi1EYXRhY2VudGVyL3ZlcnNpb25zPyR0b3A9MSZhcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b66b35d3-9241-4875-93fd-c57a95653bc8" + "76089641-d2e3-4f0f-9d2b-f4028e49e819" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "[\r\n {\r\n \"location\": \"southeastasia\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/southeastasia/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", + "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", "ResponseHeaders": { "Content-Length": [ - "321" + "309" ], "Content-Type": [ "application/json; charset=utf-8" @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "9fc414ea-410e-4600-9f7c-71bc36416f3f_131358074010838993" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_131593116433733188" ], "x-ms-request-id": [ - "ff3bde5b-df36-497b-8ad8-ce493b2793aa" + "2a467787-b8cc-4c54-ac14-3c3513b88768" ], "Cache-Control": [ "no-cache" @@ -50,49 +50,49 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" + "14995" ], "x-ms-correlation-request-id": [ - "fdc0ce75-c694-461e-8e3e-fd30928e8f49" + "bba230c9-6bbe-483d-a7ab-55fb1c029f61" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182248Z:fdc0ce75-c694-461e-8e3e-fd30928e8f49" + "UKSOUTH:20180118T073227Z:bba230c9-6bbe-483d-a7ab-55fb1c029f61" ], "Date": [ - "Thu, 27 Jul 2017 18:22:47 GMT" + "Thu, 18 Jan 2018 07:32:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1177?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjExNzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar6050?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYwNTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"crptestar1177\": \"2017-07-27 18:22:48Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6050\": \"2018-01-18 07:32:27Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "99" + "93" ], "x-ms-client-request-id": [ - "31f50119-294a-4c8c-9fc1-050370f84cef" + "3abfeed4-d1ae-4674-8213-fc95224b9884" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177\",\r\n \"name\": \"crptestar1177\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"crptestar1177\": \"2017-07-27 18:22:48Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050\",\r\n \"name\": \"crptestar6050\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar6050\": \"2018-01-18 07:32:27Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "234" + "228" ], "Content-Type": [ "application/json; charset=utf-8" @@ -104,16 +104,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-request-id": [ - "b799846d-b891-4635-bc15-463a79e296f6" + "837ce701-9188-4d89-98e6-3734419791f9" ], "x-ms-correlation-request-id": [ - "b799846d-b891-4635-bc15-463a79e296f6" + "837ce701-9188-4d89-98e6-3734419791f9" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182251Z:b799846d-b891-4635-bc15-463a79e296f6" + "UKSOUTH:20180118T073230Z:837ce701-9188-4d89-98e6-3734419791f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,40 +122,40 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:22:51 GMT" + "Thu, 18 Jan 2018 07:32:30 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "205" + "201" ], "x-ms-client-request-id": [ - "6af82580-2481-4da2-83b3-c72ebe616989" + "ac02768e-a6b7-4541-aa1f-a0841a55ea7e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"975cda00-689d-4391-bd5a-f685fa92cec5\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8edfe756-7109-429f-9589-ac0c21f13061\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "707" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,10 +170,10 @@ "3" ], "x-ms-request-id": [ - "d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb" + "95829183-2955-4a48-a1a8-329be781e387" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/95829183-2955-4a48-a1a8-329be781e387?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -186,30 +186,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-correlation-request-id": [ - "78011d69-248d-4d59-8596-a90001cf66bf" + "802e5570-907b-4fd3-a097-11a28dca2908" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182258Z:78011d69-248d-4d59-8596-a90001cf66bf" + "UKSOUTH:20180118T073235Z:802e5570-907b-4fd3-a097-11a28dca2908" ], "Date": [ - "Thu, 27 Jul 2017 18:22:57 GMT" + "Thu, 18 Jan 2018 07:32:34 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/d3be09d7-3bdf-4e53-8ea6-90c3f173a3cb?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2QzYmUwOWQ3LTNiZGYtNGU1My04ZWE2LTkwYzNmMTczYTNjYj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/95829183-2955-4a48-a1a8-329be781e387?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk1ODI5MTgzLTI5NTUtNGE0OC1hMWE4LTMyOWJlNzgxZTM4Nz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -228,7 +228,7 @@ "no-cache" ], "x-ms-request-id": [ - "248564d5-3b44-426b-84b5-22c36d17ab62" + "429b52ea-fd46-48df-bf93-4505daa7135c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,34 +244,34 @@ "14999" ], "x-ms-correlation-request-id": [ - "3569016a-3d0a-4332-9352-847cf22856a4" + "3f2e696c-c749-415f-9ea0-835528684e81" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:3569016a-3d0a-4332-9352-847cf22856a4" + "UKSOUTH:20180118T073305Z:3f2e696c-c749-415f-9ea0-835528684e81" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8eacc045-904d-48fe-82d2-6297968cf355\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "134217b3-20fd-4079-97d6-cf9262c25543" + "22aff644-d55a-46a5-9593-0b679c3bc217" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,7 +292,7 @@ "no-cache" ], "ETag": [ - "W/\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\"" + "W/\"8eacc045-904d-48fe-82d2-6297968cf355\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -302,40 +302,40 @@ "14998" ], "x-ms-correlation-request-id": [ - "865a6d15-70f7-421b-9b69-650e5797f522" + "852ff640-dd12-4ce9-8e3f-d1267ffe8313" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:865a6d15-70f7-421b-9b69-650e5797f522" + "UKSOUTH:20180118T073305Z:852ff640-dd12-4ce9-8e3f-d1267ffe8313" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:05 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDE5MDY/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDQ3ODE/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "172ab02d-0940-40fc-ba1e-0a46df5e47f3" + "acc8ddf5-c4e0-4c74-99a5-2028a541b356" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip1906\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/publicIPAddresses/pip1906\",\r\n \"etag\": \"W/\\\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"b91c4186-bd87-4ab7-8f02-fd8cb3e6a1e2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn28\",\r\n \"fqdn\": \"dn28.southeastasia.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip4781\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/publicIPAddresses/pip4781\",\r\n \"etag\": \"W/\\\"8eacc045-904d-48fe-82d2-6297968cf355\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"03b73ede-f6d4-4ac1-ba81-58afeb12614f\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn2907\",\r\n \"fqdn\": \"dn2907.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "708" + "700" ], "Content-Type": [ "application/json; charset=utf-8" @@ -347,7 +347,7 @@ "no-cache" ], "x-ms-request-id": [ - "296fb994-c857-425e-a4d8-db3de51db5b4" + "1d05974b-5d09-4c1b-a820-dc14c1a7abf1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -356,7 +356,7 @@ "no-cache" ], "ETag": [ - "W/\"0eeaa561-13d5-4f6e-b2d8-b0051deffb33\"" + "W/\"8eacc045-904d-48fe-82d2-6297968cf355\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -366,46 +366,46 @@ "14997" ], "x-ms-correlation-request-id": [ - "fa7d05ab-3ee5-44c4-9404-cff27091e1ba" + "524a0b91-f09b-48d2-9395-2f0deb2fe204" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182329Z:fa7d05ab-3ee5-44c4-9404-cff27091e1ba" + "UKSOUTH:20180118T073306Z:524a0b91-f09b-48d2-9395-2f0deb2fe204" ], "Date": [ - "Thu, 27 Jul 2017 18:23:28 GMT" + "Thu, 18 Jan 2018 07:33:06 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn2924\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn9415\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "299" + "293" ], "x-ms-client-request-id": [ - "13991c8b-c35e-43c7-a364-652c2af9293f" + "0b043968-e20f-425a-ad8b-7720c5656467" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7350\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350\",\r\n \"etag\": \"W/\\\"dbc143bf-e072-4ffc-bea6-1a89969a0268\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"66a333c9-db4e-4b3a-bc84-fb64e5d83feb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"dbc143bf-e072-4ffc-bea6-1a89969a0268\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2208\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208\",\r\n \"etag\": \"W/\\\"9dc7200b-9320-419d-abfd-a62230321ce5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"3b836679-75e4-4530-adea-3ec7e70d74ba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"9dc7200b-9320-419d-abfd-a62230321ce5\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "975" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "3" ], "x-ms-request-id": [ - "85d73a7a-2a55-4701-9869-cb2af7cc7e12" + "bdbc99b0-f092-4e29-bbe3-b570241ee9a0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/85d73a7a-2a55-4701-9869-cb2af7cc7e12?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bdbc99b0-f092-4e29-bbe3-b570241ee9a0?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -436,30 +436,30 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-correlation-request-id": [ - "d75f10c0-d960-4860-8ca2-c82e52090a28" + "bfa6514c-68fc-41d1-b0d6-fcf7d205f7e8" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182332Z:d75f10c0-d960-4860-8ca2-c82e52090a28" + "UKSOUTH:20180118T073307Z:bfa6514c-68fc-41d1-b0d6-fcf7d205f7e8" ], "Date": [ - "Thu, 27 Jul 2017 18:23:31 GMT" + "Thu, 18 Jan 2018 07:33:07 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/85d73a7a-2a55-4701-9869-cb2af7cc7e12?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzg1ZDczYTdhLTJhNTUtNDcwMS05ODY5LWNiMmFmN2NjN2UxMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bdbc99b0-f092-4e29-bbe3-b570241ee9a0?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2JkYmM5OWIwLWYwOTItNGUyOS1iYmUzLWI1NzAyNDFlZTlhMD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -478,7 +478,7 @@ "no-cache" ], "x-ms-request-id": [ - "b7f2c05a-6915-45d0-937c-17d41cb22f3d" + "f43f9b20-c6ab-4e56-b645-df257d4f4722" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,34 +494,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "42fe69b2-8c56-44f7-9e07-0b8f5f6594ea" + "95f7dd5f-5764-4b23-ba3a-511dd1e422b6" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:42fe69b2-8c56-44f7-9e07-0b8f5f6594ea" + "UKSOUTH:20180118T073338Z:95f7dd5f-5764-4b23-ba3a-511dd1e422b6" ], "Date": [ - "Thu, 27 Jul 2017 18:24:02 GMT" + "Thu, 18 Jan 2018 07:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDg/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn7350\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southeastasia\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"66a333c9-db4e-4b3a-bc84-fb64e5d83feb\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn2208\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"3b836679-75e4-4530-adea-3ec7e70d74ba\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "977" + "971" ], "Content-Type": [ "application/json; charset=utf-8" @@ -533,7 +533,7 @@ "no-cache" ], "x-ms-request-id": [ - "68c3df43-d45e-4397-b4bb-c8d7e2c2dd60" + "e47214aa-4177-4156-8cdc-8ae3547a06a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "no-cache" ], "ETag": [ - "W/\"90fdfdb9-1ff3-4394-980e-600792a550a7\"" + "W/\"7edf2d31-8645-490d-9dd0-30b18a03598a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -552,37 +552,37 @@ "14995" ], "x-ms-correlation-request-id": [ - "ec080462-7bf7-4255-8744-82d1e4c244f8" + "e6f98474-cdfc-4b29-873b-1daa80ecbaca" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:ec080462-7bf7-4255-8744-82d1e4c244f8" + "UKSOUTH:20180118T073338Z:e6f98474-cdfc-4b29-873b-1daa80ecbaca" ], "Date": [ - "Thu, 27 Jul 2017 18:24:03 GMT" + "Thu, 18 Jan 2018 07:33:37 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjczNTAvc3VibmV0cy9zbjI5MjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjIyMDgvc3VibmV0cy9zbjk0MTU/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8c74e3c7-7afa-45f0-bd03-778f27921624" + "1f944e9f-fe4f-418e-a75f-6ab42bca8b13" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn2924\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn9415\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "340" @@ -597,7 +597,7 @@ "no-cache" ], "x-ms-request-id": [ - "4a34ffa2-ec3f-4446-8e04-d7f229f76424" + "9408a388-799a-4236-90ab-50b639788f94" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "no-cache" ], "ETag": [ - "W/\"90fdfdb9-1ff3-4394-980e-600792a550a7\"" + "W/\"7edf2d31-8645-490d-9dd0-30b18a03598a\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -616,46 +616,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "81333911-05f4-493b-8927-2628373d8fbc" + "8bab12a8-a260-4b81-9018-53f660aa354f" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182403Z:81333911-05f4-493b-8927-2628373d8fbc" + "UKSOUTH:20180118T073339Z:8bab12a8-a260-4b81-9018-53f660aa354f" ], "Date": [ - "Thu, 27 Jul 2017 18:24:03 GMT" + "Thu, 18 Jan 2018 07:33:38 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn2924\",\r\n \"etag\": \"W/\\\"90fdfdb9-1ff3-4394-980e-600792a550a7\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n }\r\n },\r\n \"name\": \"ip2080\"\r\n }\r\n ]\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn9415\",\r\n \"etag\": \"W/\\\"7edf2d31-8645-490d-9dd0-30b18a03598a\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n }\r\n },\r\n \"name\": \"ip95\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "707" + "699" ], "x-ms-client-request-id": [ - "6a75ffe0-8752-480e-99ca-1cfe9c30ae9a" + "29b2fae9-8af9-47ad-9ecd-0e103bff3e0a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,10 +667,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e65caa2-0b29-4f3c-9373-60feec22a49b" + "1f3c440c-08b6-455c-b5a7-341d3bb1989f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/southeastasia/operations/5e65caa2-0b29-4f3c-9373-60feec22a49b?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/1f3c440c-08b6-455c-b5a7-341d3bb1989f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -683,37 +683,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1196" ], "x-ms-correlation-request-id": [ - "ad66bc35-6816-46d2-b9c0-eadd3abdfc66" + "2161da95-0237-40ef-ab1f-d8a2305cc4bd" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182406Z:ad66bc35-6816-46d2-b9c0-eadd3abdfc66" + "UKSOUTH:20180118T073341Z:2161da95-0237-40ef-ab1f-d8a2305cc4bd" ], "Date": [ - "Thu, 27 Jul 2017 18:24:06 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +725,7 @@ "no-cache" ], "x-ms-request-id": [ - "18204457-1854-46b5-b6e6-b1c4218af105" + "b8eb3038-4afc-4fc8-a336-35a8405169fa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,7 +734,7 @@ "no-cache" ], "ETag": [ - "W/\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\"" + "W/\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -744,40 +744,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "2850afc4-9677-46a6-8d6a-7b403b0e4369" + "96f8f4db-3587-47ce-b194-3a733d41dc80" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182407Z:2850afc4-9677-46a6-8d6a-7b403b0e4369" + "UKSOUTH:20180118T073341Z:96f8f4db-3587-47ce-b194-3a733d41dc80" ], "Date": [ - "Thu, 27 Jul 2017 18:24:06 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzgxNz9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzQ4OD9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0e38de04-fe14-476e-832f-8c2cf981cca1" + "84598f6d-ebf3-4bcc-a3c4-94ac055860ad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic817\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c6fffe2c-8de9-49f7-8c6d-eb6ad46a6d11\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip2080\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817/ipConfigurations/ip2080\",\r\n \"etag\": \"W/\\\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/virtualNetworks/vn7350/subnets/sn2924\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"zez0gzso1m3expee5nsolwb53d.ix.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic488\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ba2233b9-1e82-4236-b06d-19ba162aca10\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip95\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488/ipConfigurations/ip95\",\r\n \"etag\": \"W/\\\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/virtualNetworks/vn2208/subnets/sn9415\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"pftigo5eouyellpkh1d4odluxc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1497" + "1487" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "8bc197eb-4f62-46fd-a985-fa412f7a5374" + "d92687cb-f99b-45af-ae4c-f29417d54f8c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "no-cache" ], "ETag": [ - "W/\"f07ccc93-9ab9-4360-96c4-3b7dd3021e33\"" + "W/\"d2c18f39-4968-4150-8b2f-f8740b69a8d3\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -808,46 +808,46 @@ "14992" ], "x-ms-correlation-request-id": [ - "13fe2a15-8fcc-4f8c-abe1-ab91e22ae11a" + "0a8a1b13-aa2f-4ed8-9833-5804b1a78b7f" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182407Z:13fe2a15-8fcc-4f8c-abe1-ab91e22ae11a" + "UKSOUTH:20180118T073341Z:0a8a1b13-aa2f-4ed8-9833-5804b1a78b7f" ], "Date": [ - "Thu, 27 Jul 2017 18:24:07 GMT" + "Thu, 18 Jan 2018 07:33:40 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzODIxP2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMyNjA2P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "229" + "223" ], "x-ms-client-request-id": [ - "888b715e-be13-49f8-9c2d-cdbdad1ccb1c" + "6dcf804e-381c-453a-a162-93a576c9ba19" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821\",\r\n \"name\": \"as3821\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606\",\r\n \"name\": \"as2606\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "444" + "438" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,14 +858,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;548,Microsoft.Compute/PutVM30Min;2732" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "dc71571f-f4ec-449d-83b6-6f6300182223" + "ff139c41-7183-4766-9f54-51ec8ac15b5b" ], "Cache-Control": [ "no-cache" @@ -878,46 +881,46 @@ "1199" ], "x-ms-correlation-request-id": [ - "8b4bf3d9-38f2-49d5-96d1-1cbb7d1ceb3a" + "c08870a3-4a2a-44d1-8b4e-360db75daa50" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182412Z:8b4bf3d9-38f2-49d5-96d1-1cbb7d1ceb3a" + "UKSOUTH:20180118T073343Z:c08870a3-4a2a-44d1-8b4e-360db75daa50" ], "Date": [ - "Thu, 27 Jul 2017 18:24:12 GMT" + "Thu, 18 Jan 2018 07:33:43 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821\"\r\n }\r\n },\r\n \"location\": \"SoutheastAsia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"createOption\": \"FromImage\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1348" + "1514" ], "x-ms-client-request-id": [ - "83d4325b-73d0-41dd-823c-66f1324a0be7" + "a1df7503-1262-4eb0-b4b2-4e3bb365dd70" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1811" + "1891" ], "Content-Type": [ "application/json; charset=utf-8" @@ -929,16 +932,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;547,Microsoft.Compute/PutVM30Min;2731" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "2635d031-ed32-4aef-ae38-79fdb403cc72" + "b2bf295f-18b5-4f42-ac9a-8361a61862d7" ], "Cache-Control": [ "no-cache" @@ -951,205 +957,31 @@ "1198" ], "x-ms-correlation-request-id": [ - "26aac67c-11c8-4682-b663-01e640d8589b" + "39f40f40-b0c4-4d5d-909d-5ee7070c4dd3" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182415Z:26aac67c-11c8-4682-b663-01e640d8589b" + "UKSOUTH:20180118T073345Z:39f40f40-b0c4-4d5d-909d-5ee7070c4dd3" ], "Date": [ - "Thu, 27 Jul 2017 18:24:15 GMT" + "Thu, 18 Jan 2018 07:33:45 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "35da0cb3-c017-4d12-b954-ae6009149f25" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "82b43ea8-cf76-4bd0-b5e3-e669f1741667" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182446Z:82b43ea8-cf76-4bd0-b5e3-e669f1741667" - ], - "Date": [ - "Thu, 27 Jul 2017 18:24:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "e5bda2d5-b3b9-470d-bc4c-033d6dc5f538" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-correlation-request-id": [ - "1ee5a7f3-0144-4d7b-8123-ba50a0032afa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182516Z:1ee5a7f3-0144-4d7b-8123-ba50a0032afa" - ], - "Date": [ - "Thu, 27 Jul 2017 18:25:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "477daa19-8cc5-4a3f-96ee-d30b4618fd40" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-correlation-request-id": [ - "35f72d25-f474-4c88-9f82-b69a725a1336" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182546Z:35f72d25-f474-4c88-9f82-b69a725a1336" - ], - "Date": [ - "Thu, 27 Jul 2017 18:25:45 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1163,72 +995,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "7d05c2b3-74d2-4dad-a82f-727dd06b19ad" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14995" - ], - "x-ms-correlation-request-id": [ - "cd487d35-52ba-4f99-ae00-bf1d9d4c5efd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T182616Z:cd487d35-52ba-4f99-ae00-bf1d9d4c5efd" - ], - "Date": [ - "Thu, 27 Jul 2017 18:26:15 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11967,Microsoft.Compute/GetOperation30Min;23462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "806ac52f-30fb-4910-b83a-e78375a8a4e9" + "cf8e335e-cb80-43b5-aa3c-e295bd11ee01" ], "Cache-Control": [ "no-cache" @@ -1241,31 +1018,31 @@ "14994" ], "x-ms-correlation-request-id": [ - "e5b8dcc3-2cf5-4058-a47c-10fc005402a7" + "295f4380-db1d-4f35-a50b-38bfddfbb305" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182646Z:e5b8dcc3-2cf5-4058-a47c-10fc005402a7" + "UKSOUTH:20180118T073415Z:295f4380-db1d-4f35-a50b-38bfddfbb305" ], "Date": [ - "Thu, 27 Jul 2017 18:26:46 GMT" + "Thu, 18 Jan 2018 07:34:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1279,14 +1056,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11956,Microsoft.Compute/GetOperation30Min;23451" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7928a477-195c-4819-9351-ed1ccdcf3b60" + "b29b0f60-2348-41a3-9478-8278b1bdc533" ], "Cache-Control": [ "no-cache" @@ -1299,31 +1079,31 @@ "14993" ], "x-ms-correlation-request-id": [ - "670d1520-ee46-4870-8e5a-730201d4aed2" + "05103138-a5f4-4e5d-8da7-aeeb2a775f73" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182717Z:670d1520-ee46-4870-8e5a-730201d4aed2" + "UKSOUTH:20180118T073446Z:05103138-a5f4-4e5d-8da7-aeeb2a775f73" ], "Date": [ - "Thu, 27 Jul 2017 18:27:16 GMT" + "Thu, 18 Jan 2018 07:34:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1337,14 +1117,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11949,Microsoft.Compute/GetOperation30Min;23645" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7e4b6966-2290-4d6d-9a17-a21ca98b4ae7" + "33be8c69-dc40-493e-92a3-bea3579cda45" ], "Cache-Control": [ "no-cache" @@ -1357,31 +1140,31 @@ "14992" ], "x-ms-correlation-request-id": [ - "0d286bcf-21e4-4aa4-bb2d-380391972189" + "8b9dee43-4980-48ea-aefe-fb89db3edb97" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182747Z:0d286bcf-21e4-4aa4-bb2d-380391972189" + "UKSOUTH:20180118T073519Z:8b9dee43-4980-48ea-aefe-fb89db3edb97" ], "Date": [ - "Thu, 27 Jul 2017 18:27:47 GMT" + "Thu, 18 Jan 2018 07:35:18 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1395,14 +1178,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11941,Microsoft.Compute/GetOperation30Min;23628" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "e252d473-69bd-4357-9717-f159d7704ff9" + "f5282e2a-8f10-4ead-bb1e-8dd27952f6fe" ], "Cache-Control": [ "no-cache" @@ -1415,31 +1201,31 @@ "14991" ], "x-ms-correlation-request-id": [ - "eeb0d7f5-6072-4848-8322-6cd67b70dba8" + "92b55df5-3867-40be-93c2-2b3ca75714cd" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182817Z:eeb0d7f5-6072-4848-8322-6cd67b70dba8" + "UKSOUTH:20180118T073555Z:92b55df5-3867-40be-93c2-2b3ca75714cd" ], "Date": [ - "Thu, 27 Jul 2017 18:28:17 GMT" + "Thu, 18 Jan 2018 07:35:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1453,14 +1239,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11934,Microsoft.Compute/GetOperation30Min;23612" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "20adaaf5-04ca-40ed-82c7-52b24dc8109a" + "8a1363c5-092f-4ce7-9a4c-2e8af3a92b3f" ], "Cache-Control": [ "no-cache" @@ -1473,31 +1262,31 @@ "14990" ], "x-ms-correlation-request-id": [ - "ba2693d9-e2f9-4406-a6e7-bc01388b287c" + "7288c0f6-d23a-4fc1-9831-c49cc5c622c5" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182847Z:ba2693d9-e2f9-4406-a6e7-bc01388b287c" + "UKSOUTH:20180118T073625Z:7288c0f6-d23a-4fc1-9831-c49cc5c622c5" ], "Date": [ - "Thu, 27 Jul 2017 18:28:47 GMT" + "Thu, 18 Jan 2018 07:36:25 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1511,14 +1300,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11927,Microsoft.Compute/GetOperation30Min;23599" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "962ad01c-6ec9-44df-b0a4-e5f73a98411a" + "c536e5b6-1c64-459d-88c0-6ee945787908" ], "Cache-Control": [ "no-cache" @@ -1531,31 +1323,31 @@ "14989" ], "x-ms-correlation-request-id": [ - "8c4f2a31-59a7-452d-a0d6-2bae5c2f47f6" + "71f73bea-b9d1-4368-9650-93d7f71da7d0" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182918Z:8c4f2a31-59a7-452d-a0d6-2bae5c2f47f6" + "UKSOUTH:20180118T073656Z:71f73bea-b9d1-4368-9650-93d7f71da7d0" ], "Date": [ - "Thu, 27 Jul 2017 18:29:17 GMT" + "Thu, 18 Jan 2018 07:36:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1569,14 +1361,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11927,Microsoft.Compute/GetOperation30Min;23588" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "7f109b43-014b-4f45-b772-ae33342fb77b" + "487b79be-579a-4aa0-9cd6-12d62672580b" ], "Cache-Control": [ "no-cache" @@ -1589,31 +1384,31 @@ "14988" ], "x-ms-correlation-request-id": [ - "aba51f02-363b-47ec-bc40-fa257273ab84" + "567b6a37-3b45-4561-bfc2-2a905bb56cf7" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T182948Z:aba51f02-363b-47ec-bc40-fa257273ab84" + "UKSOUTH:20180118T073728Z:567b6a37-3b45-4561-bfc2-2a905bb56cf7" ], "Date": [ - "Thu, 27 Jul 2017 18:29:47 GMT" + "Thu, 18 Jan 2018 07:37:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1627,14 +1422,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11924,Microsoft.Compute/GetOperation30Min;23574" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "59f285ac-70f9-44b9-a439-20f4af054891" + "e8e8f76d-2bd2-4df6-b2e7-ad4fc2513028" ], "Cache-Control": [ "no-cache" @@ -1647,31 +1445,31 @@ "14987" ], "x-ms-correlation-request-id": [ - "d8501291-6824-40b2-bc31-bfabf30f6852" + "87a01459-2a2b-49ac-894e-f05e75338d6c" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183018Z:d8501291-6824-40b2-bc31-bfabf30f6852" + "UKSOUTH:20180118T073759Z:87a01459-2a2b-49ac-894e-f05e75338d6c" ], "Date": [ - "Thu, 27 Jul 2017 18:30:17 GMT" + "Thu, 18 Jan 2018 07:37:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "134" @@ -1685,14 +1483,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11918,Microsoft.Compute/GetOperation30Min;23555" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "536be289-581b-4f8b-a461-68e02859f5f9" + "3fa12bfb-c4ce-425f-b51f-dcf309d7a409" ], "Cache-Control": [ "no-cache" @@ -1705,31 +1506,31 @@ "14986" ], "x-ms-correlation-request-id": [ - "cf1e4dd0-f4fe-4f22-822c-d8653b7b09d3" + "4f77b7d6-51ca-4533-ae6f-20a23962f98d" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183048Z:cf1e4dd0-f4fe-4f22-822c-d8653b7b09d3" + "UKSOUTH:20180118T073829Z:4f77b7d6-51ca-4533-ae6f-20a23962f98d" ], "Date": [ - "Thu, 27 Jul 2017 18:30:48 GMT" + "Thu, 18 Jan 2018 07:38:29 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/2635d031-ed32-4aef-ae38-79fdb403cc72?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zLzI2MzVkMDMxLWVkMzItNGFlZi1hZTM4LTc5ZmRiNDAzY2M3Mj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/b2bf295f-18b5-4f42-ac9a-8361a61862d7?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2IyYmYyOTVmLTE4YjUtNGY0Mi1hYzlhLTgzNjFhNjE4NjJkNz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:24:15.0464832-07:00\",\r\n \"endTime\": \"2017-07-27T11:30:50.9360452-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"2635d031-ed32-4aef-ae38-79fdb403cc72\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:33:44.8840065-08:00\",\r\n \"endTime\": \"2018-01-17T23:38:29.6358778-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"b2bf295f-18b5-4f42-ac9a-8361a61862d7\"\r\n}", "ResponseHeaders": { "Content-Length": [ "184" @@ -1743,14 +1544,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11912,Microsoft.Compute/GetOperation30Min;23537" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "885a7896-f156-4343-9018-7e3422fed780" + "ff069b40-9326-4a29-a894-a039cf4f8ba0" ], "Cache-Control": [ "no-cache" @@ -1763,34 +1567,34 @@ "14985" ], "x-ms-correlation-request-id": [ - "fb2ae90e-bafa-4275-98bb-c56edf4f23b4" + "cb1ee498-a621-4afc-8ee8-b6f5dce4249e" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183118Z:fb2ae90e-bafa-4275-98bb-c56edf4f23b4" + "UKSOUTH:20180118T073859Z:cb1ee498-a621-4afc-8ee8-b6f5dce4249e" ], "Date": [ - "Thu, 27 Jul 2017 18:31:18 GMT" + "Thu, 18 Jan 2018 07:38:58 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2231" + "2311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1801,14 +1605,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4787,Microsoft.Compute/LowCostGet30Min;38238" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "6446379b-4fec-465e-8b27-4ec3dbcd35eb" + "346ad12c-6ca3-4972-b6c8-35975624dbea" ], "Cache-Control": [ "no-cache" @@ -1821,40 +1628,40 @@ "14984" ], "x-ms-correlation-request-id": [ - "89607cd2-c674-4dec-9a7e-6e434aa48b22" + "7bf429fd-a305-4f1f-99d7-f5c3dc17d985" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:89607cd2-c674-4dec-9a7e-6e434aa48b22" + "UKSOUTH:20180118T073903Z:7bf429fd-a305-4f1f-99d7-f5c3dc17d985" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:39:02 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "323b5963-3b95-49df-806d-c1d5c999472f" + "5bd02b5c-32ee-406b-8702-322082cbad99" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "2231" + "2311" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1865,14 +1672,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4788,Microsoft.Compute/LowCostGet30Min;38237" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "653e3d60-bb00-415b-8e39-56248f136307" + "02ef4ef1-41dd-490a-9d24-58ce1a836fa9" ], "Cache-Control": [ "no-cache" @@ -1885,40 +1695,40 @@ "14983" ], "x-ms-correlation-request-id": [ - "f7059330-d68a-46dc-b0cd-bd17b68bf836" + "7299f54b-bb2e-431f-afa5-9fb0d0d70108" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:f7059330-d68a-46dc-b0cd-bd17b68bf836" + "UKSOUTH:20180118T073915Z:7299f54b-bb2e-431f-afa5-9fb0d0d70108" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:39:15 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDg/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab98666b-23ef-47ce-b1ee-2bcc7270d45b" + "6025c65f-ffdd-4127-81da-9544e71a376b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:31:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:30:50.9204239-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-17T23:44:15-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bz6prdapp15\",\r\n \"fabricTenantName\": \"531d0c1b-5ab4-4bfc-8800-83b0e5ef3667\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:38:29.6358778-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3792" + "4162" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1929,14 +1739,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4770,Microsoft.Compute/LowCostGet30Min;38208" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "6edfff78-86e4-4a59-befd-0a317a7968ce" + "aca02cc6-ffd7-4f65-a246-c76071d77c79" ], "Cache-Control": [ "no-cache" @@ -1946,43 +1759,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" + "14999" ], "x-ms-correlation-request-id": [ - "ccb8f0c9-928c-4fd3-b808-64ba377b3524" + "599a8490-4b93-4781-bd5c-2611b1a266ad" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183119Z:ccb8f0c9-928c-4fd3-b808-64ba377b3524" + "UKSOUTH:20180118T074416Z:599a8490-4b93-4781-bd5c-2611b1a266ad" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:44:16 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjEvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDgvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d45becf9-9093-4218-b555-b2f1857299f7" + "90143ddb-6795-4ef6-90e1-a4ba884b4789" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:31:21-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:24:27.2389627-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:30:50.9204239-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"platformUpdateDomain\": 0,\r\n \"platformFaultDomain\": 0,\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-17T23:44:15-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:33:57.0403809-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bz6prdapp15\",\r\n \"fabricTenantName\": \"531d0c1b-5ab4-4bfc-8800-83b0e5ef3667\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:38:29.6358778-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1330" + "1592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1993,14 +1806,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4791,Microsoft.Compute/GetInstanceView30Min;23952" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "fc380bae-0717-4803-9ed7-fba926da4359" + "058537e7-e6a8-47f2-8940-1c3247216bf4" ], "Cache-Control": [ "no-cache" @@ -2010,43 +1826,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" + "14998" ], "x-ms-correlation-request-id": [ - "20f1ef2a-b76c-4790-b3cc-755248151763" + "25cb4faa-20cf-4080-a26f-03f52455755a" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:20f1ef2a-b76c-4790-b3cc-755248151763" + "UKSOUTH:20180118T074428Z:25cb4faa-20cf-4080-a26f-03f52455755a" ], "Date": [ - "Thu, 27 Jul 2017 18:31:19 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7d26b141-6d6f-40bd-a99f-51e0417e9fa2" + "6605ed03-297a-4828-870a-85a38104ebd6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"a532b6ff-40ed-46c7-8b8f-162e25fb997f\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/AS3821\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A0\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm6561_disk2_85ec626b423e420995373921e8edf5b7\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/disks/vm6561_disk2_85ec626b423e420995373921e8edf5b7\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Network/networkInterfaces/nic817\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561\",\r\n \"name\": \"vm6561\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"edd8b718-8f7e-451e-bf23-2bfd9a1e13df\",\r\n \"availabilitySet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/AS2606\"\r\n },\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_M64s\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"writeAcceleratorEnabled\": true,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/disks/vm1308_disk2_410ec741b0bb4b16ba991c8e48d55062\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Network/networkInterfaces/nic488\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308\",\r\n \"name\": \"vm1308\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2504" + "2592" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2057,14 +1873,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;798" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b3130dc2-3ff2-4c43-86ff-b5b608cfada3" + "155b4286-0107-4938-a591-2621c0e3e85d" ], "Cache-Control": [ "no-cache" @@ -2074,43 +1893,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14980" + "14997" ], "x-ms-correlation-request-id": [ - "f5cd9584-2294-4fe5-ac20-6f9ee2ebf5c5" + "332e6156-3439-419b-aa11-e1a16f61bdc8" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:f5cd9584-2294-4fe5-ac20-6f9ee2ebf5c5" + "UKSOUTH:20180118T074428Z:332e6156-3439-419b-aa11-e1a16f61bdc8" ], "Date": [ - "Thu, 27 Jul 2017 18:31:20 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjEvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/virtualMachines/vm1308/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTEzMDgvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0513ea26-e6cf-4db9-96f6-2a5ec103c992" + "a2f85d30-810d-4004-ad35-7df8d2fb9f16" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2014" + "1720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2121,14 +1940,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4768,Microsoft.Compute/LowCostGet30Min;38206" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "5484a10b-2589-4460-8ac0-8831bb951110" + "7eae3283-ea66-4701-b00b-955044968be5" ], "Cache-Control": [ "no-cache" @@ -2138,43 +1960,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14979" + "14996" ], "x-ms-correlation-request-id": [ - "01047159-b8d6-4568-bf27-db58cebbff03" + "ed2dbd79-820e-4648-be7a-f0472b949b18" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183120Z:01047159-b8d6-4568-bf27-db58cebbff03" + "UKSOUTH:20180118T074428Z:ed2dbd79-820e-4648-be7a-f0472b949b18" ], "Date": [ - "Thu, 27 Jul 2017 18:31:20 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/availabilitySets/as3821/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMzODIxL3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar6050/providers/Microsoft.Compute/availabilitySets/as2606/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjYwNTAvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMyNjA2L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "160941a7-092e-4935-98c1-8e843a17fc5b" + "ca2843c7-2bf5-45ac-ab0b-9d346cd748a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "2014" + "1720" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2185,14 +2007,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4767,Microsoft.Compute/LowCostGet30Min;38205" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "ba739f28-b3f7-4a02-9fc2-dee0421759f7" + "77d7dadf-89ac-4389-8788-33a45869cfc5" ], "Cache-Control": [ "no-cache" @@ -2202,37 +2027,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14978" + "14995" ], "x-ms-correlation-request-id": [ - "1a73e97f-e6f0-46ab-a23b-2c80f66911d6" + "8881d8b0-ff27-4d6c-a9e1-1b78501c443e" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183121Z:1a73e97f-e6f0-46ab-a23b-2c80f66911d6" + "UKSOUTH:20180118T074429Z:8881d8b0-ff27-4d6c-a9e1-1b78501c443e" ], "Date": [ - "Thu, 27 Jul 2017 18:31:21 GMT" + "Thu, 18 Jan 2018 07:44:28 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1177/providers/Microsoft.Compute/virtualMachines/vm6561?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjExNzcvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTY1NjE/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar6050?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjYwNTA/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "091ee53a-d178-4b78-897c-955cb96770c8" + "e1275441-062c-4d7e-ac13-8c5ee47cf9ea" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, "ResponseBody": "", @@ -2246,573 +2071,64 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "Retry-After": [ + "15" ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-request-id": [ - "a275f3f2-fed3-4fda-9c78-e74c58ffb7ed" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "0b6a1d43-009d-4c06-bf21-60979a7b0abf" ], "x-ms-correlation-request-id": [ - "860a7769-13d9-424f-9f6d-352c13d92837" + "0b6a1d43-009d-4c06-bf21-60979a7b0abf" ], "x-ms-routing-request-id": [ - "WESTUS:20170727T183122Z:860a7769-13d9-424f-9f6d-352c13d92837" + "UKSOUTH:20180118T074431Z:0b6a1d43-009d-4c06-bf21-60979a7b0abf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Cache-Control": [ + "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:31:21 GMT" + "Thu, 18 Jan 2018 07:44:30 GMT" + ], + "Location": [ + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVI2MDUwLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "58b0a6bc-6a7b-4e91-a67c-cfddaa56326b" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14977" - ], - "x-ms-correlation-request-id": [ - "1f2fcbfe-6087-4a2e-922b-b1332875a9e2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183152Z:1f2fcbfe-6087-4a2e-922b-b1332875a9e2" - ], - "Date": [ - "Thu, 27 Jul 2017 18:31:51 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "73aa29cf-7b9f-4a20-814b-359733c53bc0" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14976" - ], - "x-ms-correlation-request-id": [ - "a6bdb829-ab03-447d-97d1-fa3bc81d7b74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183222Z:a6bdb829-ab03-447d-97d1-fa3bc81d7b74" - ], - "Date": [ - "Thu, 27 Jul 2017 18:32:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "1127a13c-bba3-4041-90fd-c31b7a42e383" - ], - "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": [ - "87ea4762-d331-44f5-a177-2e804900560c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183252Z:87ea4762-d331-44f5-a177-2e804900560c" - ], - "Date": [ - "Thu, 27 Jul 2017 18:32:52 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/southeastasia/operations/a275f3f2-fed3-4fda-9c78-e74c58ffb7ed?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvc291dGhlYXN0YXNpYS9vcGVyYXRpb25zL2EyNzVmM2YyLWZlZDMtNGZkYS05Yzc4LWU3NGM1OGZmYjdlZD9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:31:23.4327003-07:00\",\r\n \"endTime\": \"2017-07-27T11:33:14.536556-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"a275f3f2-fed3-4fda-9c78-e74c58ffb7ed\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "183" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "c1f6bce4-2ec5-4b1b-8dc8-ef20c22a125e_131358081291382383" - ], - "x-ms-request-id": [ - "f87d6a1a-416e-4269-ac27-92c829e03555" - ], - "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": [ - "9aabf635-9ed4-42ae-b539-795b97849fd7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20170727T183323Z:9aabf635-9ed4-42ae-b539-795b97849fd7" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:22 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1177?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjExNzc/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "f6d13b68-0a80-4e0a-950d-b342b12612dc" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" - ], - "x-ms-request-id": [ - "972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "x-ms-correlation-request-id": [ - "972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183327Z:972cda0a-4f74-4f09-80df-9606e19d8fd5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14999" - ], - "x-ms-request-id": [ - "1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "x-ms-correlation-request-id": [ - "1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183357Z:1807272a-e4a3-4337-9857-6dd6973655dc" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:33:57 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14998" - ], - "x-ms-request-id": [ - "28625333-db75-472e-b1b9-94af66945763" - ], - "x-ms-correlation-request-id": [ - "28625333-db75-472e-b1b9-94af66945763" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183428Z:28625333-db75-472e-b1b9-94af66945763" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:34:27 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14997" - ], - "x-ms-request-id": [ - "3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "x-ms-correlation-request-id": [ - "3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183458Z:3e340c6e-7082-4a8c-b724-1d4acc3d689b" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:34:58 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxMTc3LVNPVVRIRUFTVEFTSUEiLCJqb2JMb2NhdGlvbiI6InNvdXRoZWFzdGFzaWEifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TVRjM0xWTlBWVlJJUlVGVFZFRlRTVUVpTENKcWIySk1iMk5oZEdsdmJpSTZJbk52ZFhSb1pXRnpkR0Z6YVdFaWZRP2FwaS12ZXJzaW9uPTIwMTctMDUtMTA=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14996" - ], - "x-ms-request-id": [ - "74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "x-ms-correlation-request-id": [ - "74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T183528Z:74fa4fb1-4f67-493e-9f44-30b936caf8a2" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:35:28 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar1177", - "crptestar6446", - "as3821" + "crptestar6050", + "crptestar4483", + "as2606" ], "CreatePublicIP": [ - "pip1906", - "dn28" + "pip4781", + "dn2907" ], "CreateVNET": [ - "vn7350", - "sn2924" + "vn2208", + "sn9415" ], "CreateNIC": [ - "nic817", - "ip2080" + "nic488", + "ip95" ], "CreateDefaultVMInput": [ - "crptestar1741", - "crptestar9228", - "crptestar6076", - "vm6561", - "Microsoft.Compute/virtualMachines9620" + "crptestar9888", + "crptestar6373", + "crptestar8606", + "vm1308", + "Microsoft.Compute/virtualMachines7914" ] }, "Variables": { "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json index 53a47edbb14fc..7b19de74264fd 100644 --- a/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json +++ b/src/SDKs/Compute/Compute.Tests/SessionRecords/Compute.Tests.VMScenarioTests/TestVMScenarioOperations_ManagedDisks_PirImage_Zones.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8cd31f47-0c87-4750-a9c5-fbef27f3879f" + "ae629250-83cd-47b6-95f4-8e179b782987" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, "ResponseBody": "[\r\n {\r\n \"location\": \"eastus2\",\r\n \"name\": \"4.127.20170406\",\r\n \"id\": \"/Subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/Providers/Microsoft.Compute/Locations/eastus2/Publishers/MicrosoftWindowsServer/ArtifactTypes/VMImage/Offers/WindowsServer/Skus/2012-R2-Datacenter/Versions/4.127.20170406\"\r\n }\r\n]", @@ -37,10 +37,10 @@ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "19a6b8e7-2f9b-4b25-aea4-718323f85895_131407183909564042" + "19a6b8e7-2f9b-4b25-aea4-718323f85895_131593116433733188" ], "x-ms-request-id": [ - "c0d406e1-a500-4fd6-9bfe-344ab2a4b1a6" + "cc628886-da22-49cf-9bbf-ec7f55f270ad" ], "Cache-Control": [ "no-cache" @@ -53,22 +53,22 @@ "14999" ], "x-ms-correlation-request-id": [ - "62c091dc-e979-4f16-a0fe-36884ea6862a" + "f683447c-4f5e-4b29-befb-fac1ffd0802b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185110Z:62c091dc-e979-4f16-a0fe-36884ea6862a" + "UKSOUTH:20180118T075336Z:f683447c-4f5e-4b29-befb-fac1ffd0802b" ], "Date": [ - "Thu, 27 Jul 2017 18:51:10 GMT" + "Thu, 18 Jan 2018 07:53:35 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1693?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2OTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar2034?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjIwMzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1693\": \"2017-07-27 18:51:10Z\"\r\n }\r\n}", + "RequestBody": "{\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2034\": \"2018-01-18 07:53:36Z\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -77,19 +77,19 @@ "93" ], "x-ms-client-request-id": [ - "c0edeaf3-aa04-4b1f-8ed2-ef5b27820aa6" + "7a90a364-5d22-4f42-86ce-8b88ccfac21e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693\",\r\n \"name\": \"crptestar1693\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar1693\": \"2017-07-27 18:51:10Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034\",\r\n \"name\": \"crptestar2034\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"crptestar2034\": \"2018-01-18 07:53:36Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "228" @@ -104,16 +104,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1197" ], "x-ms-request-id": [ - "86c503e7-3f84-46ef-afa6-1caead3a41df" + "0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "x-ms-correlation-request-id": [ - "86c503e7-3f84-46ef-afa6-1caead3a41df" + "0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185112Z:86c503e7-3f84-46ef-afa6-1caead3a41df" + "UKSOUTH:20180118T075338Z:0b2979c7-0b81-4b94-9ec9-370dff8a3301" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -122,40 +122,40 @@ "no-cache" ], "Date": [ - "Thu, 27 Jul 2017 18:51:11 GMT" + "Thu, 18 Jan 2018 07:53:38 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\"\r\n }\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "201" + "200" ], "x-ms-client-request-id": [ - "d1e02a97-39bf-48c2-b871-5c96d2d7115b" + "694fefd7-0090-41b2-b209-dbcb5895c5b3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"3b80c6a1-f348-4f9d-9656-6b0484e84ca1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"264427be-fc70-4359-b630-d8d5397956d2\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "699" + "697" ], "Content-Type": [ "application/json; charset=utf-8" @@ -170,10 +170,10 @@ "3" ], "x-ms-request-id": [ - "23abb3ba-23c4-42f6-a5bc-f5def1b670b2" + "21c8a669-a22f-4d59-83f1-ffc53811494b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/23abb3ba-23c4-42f6-a5bc-f5def1b670b2?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/21c8a669-a22f-4d59-83f1-ffc53811494b?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -189,27 +189,27 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc5436c0-d4d9-4ee5-bfd7-0d5359c9dab4" + "1a31c6c9-534a-444b-8fff-d16384f57bcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185115Z:dc5436c0-d4d9-4ee5-bfd7-0d5359c9dab4" + "UKSOUTH:20180118T075343Z:1a31c6c9-534a-444b-8fff-d16384f57bcf" ], "Date": [ - "Thu, 27 Jul 2017 18:51:15 GMT" + "Thu, 18 Jan 2018 07:53:43 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/23abb3ba-23c4-42f6-a5bc-f5def1b670b2?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzIzYWJiM2JhLTIzYzQtNDJmNi1hNWJjLWY1ZGVmMWI2NzBiMj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/21c8a669-a22f-4d59-83f1-ffc53811494b?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzIxYzhhNjY5LWEyMmYtNGQ1OS04M2YxLWZmYzUzODExNDk0Yj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -228,7 +228,7 @@ "no-cache" ], "x-ms-request-id": [ - "4961ecd3-62f6-496e-a8a9-40fe1c80a034" + "407d17cb-962f-423c-a8eb-0bb4604dd49a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -244,34 +244,34 @@ "14999" ], "x-ms-correlation-request-id": [ - "2cb4d13b-9ab5-4d19-8ed1-5365821319be" + "05f255a6-9519-4631-a923-df326b39204b" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:2cb4d13b-9ab5-4d19-8ed1-5365821319be" + "UKSOUTH:20180118T075413Z:05f255a6-9519-4631-a923-df326b39204b" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"7b18d110-5ed3-4bdd-a342-f73e00375275\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"5b931733-4e61-4244-abb5-8e5929e6c805\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "700" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -283,7 +283,7 @@ "no-cache" ], "x-ms-request-id": [ - "9a0713a5-9642-4f0e-8619-caff63014df3" + "b38eab2b-31c3-46e6-ae0a-f8a64570a1d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -292,7 +292,7 @@ "no-cache" ], "ETag": [ - "W/\"7b18d110-5ed3-4bdd-a342-f73e00375275\"" + "W/\"5b931733-4e61-4244-abb5-8e5929e6c805\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -302,40 +302,40 @@ "14998" ], "x-ms-correlation-request-id": [ - "f98e8bb8-0800-43e3-874d-73d6b77163bd" + "a1ded696-b1de-4d32-86de-b11616d70ed7" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:f98e8bb8-0800-43e3-874d-73d6b77163bd" + "UKSOUTH:20180118T075414Z:a1ded696-b1de-4d32-86de-b11616d70ed7" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDczMzk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3B1YmxpY0lQQWRkcmVzc2VzL3BpcDM3NDA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6e94ea93-b96e-4d5b-aec9-36950a6a6026" + "b4faf803-4d88-45a8-8536-4ce272f6b434" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"pip7339\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/publicIPAddresses/pip7339\",\r\n \"etag\": \"W/\\\"7b18d110-5ed3-4bdd-a342-f73e00375275\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"c5df58a8-bebb-4c4d-98b1-ec086d57307a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn7924\",\r\n \"fqdn\": \"dn7924.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"pip3740\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/publicIPAddresses/pip3740\",\r\n \"etag\": \"W/\\\"5b931733-4e61-4244-abb5-8e5929e6c805\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4c86ed7c-672e-4e7a-86ed-2d71d92d7bdd\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"dn969\",\r\n \"fqdn\": \"dn969.eastus2.cloudapp.azure.com\"\r\n }\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "700" + "698" ], "Content-Type": [ "application/json; charset=utf-8" @@ -347,7 +347,7 @@ "no-cache" ], "x-ms-request-id": [ - "becd5484-c4ab-4f3f-b15f-53afdeb9c858" + "7587160f-0b71-4e15-bc26-84595fba6ac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -356,7 +356,7 @@ "no-cache" ], "ETag": [ - "W/\"7b18d110-5ed3-4bdd-a342-f73e00375275\"" + "W/\"5b931733-4e61-4244-abb5-8e5929e6c805\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -366,46 +366,46 @@ "14997" ], "x-ms-correlation-request-id": [ - "c77e3066-215b-4212-9b4f-0ef89cdfc64b" + "5db58b50-110d-4d78-8fed-5b3882c6f606" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185146Z:c77e3066-215b-4212-9b4f-0ef89cdfc64b" + "UKSOUTH:20180118T075414Z:5db58b50-110d-4d78-8fed-5b3882c6f606" ], "Date": [ - "Thu, 27 Jul 2017 18:51:45 GMT" + "Thu, 18 Jan 2018 07:54:13 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn1399\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n },\r\n \"name\": \"sn952\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "293" + "292" ], "x-ms-client-request-id": [ - "943f2f9d-6a41-4f0a-939a-179426ac5055" + "fde30e0e-bfb8-4507-a9ce-4e50aa14e9b5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn3964\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964\",\r\n \"etag\": \"W/\\\"0c0c8e62-f1b8-47b2-93a7-fabf9994a262\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"4410765a-0c43-4246-898b-7fd5072c4872\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"0c0c8e62-f1b8-47b2-93a7-fabf9994a262\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn7060\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060\",\r\n \"etag\": \"W/\\\"d2501d38-cea9-42d1-9d62-e48dd65749c7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"ea73ed03-053a-4620-b016-3207bc2a8cd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"d2501d38-cea9-42d1-9d62-e48dd65749c7\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "969" + "967" ], "Content-Type": [ "application/json; charset=utf-8" @@ -420,10 +420,10 @@ "3" ], "x-ms-request-id": [ - "fa2dc583-4bf7-438f-856d-40986e1f3a89" + "976eab8d-1474-41f1-93ca-d7fa1d24ac0f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/fa2dc583-4bf7-438f-856d-40986e1f3a89?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/976eab8d-1474-41f1-93ca-d7fa1d24ac0f?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -439,27 +439,27 @@ "1198" ], "x-ms-correlation-request-id": [ - "66f28ba5-78ad-4727-a03e-2552bb9b7daf" + "2e8f76e1-4fb3-4c15-9d6a-b854201eea82" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185148Z:66f28ba5-78ad-4727-a03e-2552bb9b7daf" + "UKSOUTH:20180118T075415Z:2e8f76e1-4fb3-4c15-9d6a-b854201eea82" ], "Date": [ - "Thu, 27 Jul 2017 18:51:47 GMT" + "Thu, 18 Jan 2018 07:54:15 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/fa2dc583-4bf7-438f-856d-40986e1f3a89?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zL2ZhMmRjNTgzLTRiZjctNDM4Zi04NTZkLTQwOTg2ZTFmM2E4OT9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/976eab8d-1474-41f1-93ca-d7fa1d24ac0f?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuTmV0d29yay9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzk3NmVhYjhkLTE0NzQtNDFmMS05M2NhLWQ3ZmExZDI0YWMwZj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, @@ -478,7 +478,7 @@ "no-cache" ], "x-ms-request-id": [ - "e5f85813-0358-4ac3-878f-ef6c51339011" + "3a781244-52bb-480b-b909-eda8e5b9bcc8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -494,34 +494,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "8819d3c4-ab7b-4a3c-b7ab-3e85ce4ce3a8" + "983bdb69-696c-4db4-8c20-0ba4cb13018d" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:8819d3c4-ab7b-4a3c-b7ab-3e85ce4ce3a8" + "UKSOUTH:20180118T075446Z:983bdb69-696c-4db4-8c20-0ba4cb13018d" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQ/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjA/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"vn3964\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"4410765a-0c43-4246-898b-7fd5072c4872\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"vn7060\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"ea73ed03-053a-4620-b016-3207bc2a8cd8\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": []\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "971" + "969" ], "Content-Type": [ "application/json; charset=utf-8" @@ -533,7 +533,7 @@ "no-cache" ], "x-ms-request-id": [ - "1ba1aeb3-5835-45b2-ad13-f4f279670b4b" + "17187386-33a3-4912-82b7-43b26fd02940" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -542,7 +542,7 @@ "no-cache" ], "ETag": [ - "W/\"675dc2fd-d370-401a-b6eb-95fcc71fada8\"" + "W/\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -552,40 +552,40 @@ "14995" ], "x-ms-correlation-request-id": [ - "d1f83522-d11d-4f21-8a65-0c204ff9fdce" + "906541e0-8a10-4e5b-baf5-11cb291f980a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:d1f83522-d11d-4f21-8a65-0c204ff9fdce" + "UKSOUTH:20180118T075446Z:906541e0-8a10-4e5b-baf5-11cb291f980a" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjM5NjQvc3VibmV0cy9zbjEzOTk/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL3ZpcnR1YWxOZXR3b3Jrcy92bjcwNjAvc3VibmV0cy9zbjk1Mj9hcGktdmVyc2lvbj0yMDE3LTAzLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "26ea8ebc-df40-4f70-b97b-537cc39758b2" + "bd5c44fb-6d3c-4593-8424-390fdabe1a0e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"sn1399\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"sn952\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "340" + "338" ], "Content-Type": [ "application/json; charset=utf-8" @@ -597,7 +597,7 @@ "no-cache" ], "x-ms-request-id": [ - "4e112c76-a707-4839-b1f9-87b79ca4c339" + "4f9ca49e-e778-4292-8f36-c83b8faef20e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -606,7 +606,7 @@ "no-cache" ], "ETag": [ - "W/\"675dc2fd-d370-401a-b6eb-95fcc71fada8\"" + "W/\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -616,46 +616,46 @@ "14994" ], "x-ms-correlation-request-id": [ - "f85cdae2-254e-405f-aa13-0219e401fd91" + "3e2a48a9-dc01-48e7-9451-1b380f334161" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185218Z:f85cdae2-254e-405f-aa13-0219e401fd91" + "UKSOUTH:20180118T075446Z:3e2a48a9-dc01-48e7-9451-1b380f334161" ], "Date": [ - "Thu, 27 Jul 2017 18:52:18 GMT" + "Thu, 18 Jan 2018 07:54:45 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn1399\",\r\n \"etag\": \"W/\\\"675dc2fd-d370-401a-b6eb-95fcc71fada8\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n }\r\n },\r\n \"name\": \"ip9012\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"ipConfigurations\": [\r\n {\r\n \"properties\": {\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"name\": \"sn952\",\r\n \"etag\": \"W/\\\"0c1396e8-84fc-4e84-85aa-8cd4d17c8b12\\\"\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n }\r\n },\r\n \"name\": \"ip8046\"\r\n }\r\n ]\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "701" + "699" ], "x-ms-client-request-id": [ - "7fab651c-f2e3-4b9e-bcee-6627b4ac78f6" + "2479a265-5eef-48f1-b5fe-01c115440070" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -667,10 +667,10 @@ "no-cache" ], "x-ms-request-id": [ - "f05318ac-d422-41d0-bc08-3b1bbe2100ec" + "bb040af0-382e-4033-81be-0dcbcf310d67" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/f05318ac-d422-41d0-bc08-3b1bbe2100ec?api-version=2017-03-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Network/locations/eastus2/operations/bb040af0-382e-4033-81be-0dcbcf310d67?api-version=2017-03-01" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -686,34 +686,34 @@ "1197" ], "x-ms-correlation-request-id": [ - "b6a67547-1c4c-49a3-bf98-a9858887715d" + "17f18cf7-d335-4302-8d24-f52168a3fc74" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:b6a67547-1c4c-49a3-bf98-a9858887715d" + "UKSOUTH:20180118T075448Z:17f18cf7-d335-4302-8d24-f52168a3fc74" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:48 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -725,7 +725,7 @@ "no-cache" ], "x-ms-request-id": [ - "9bf036be-f62d-4b66-af52-832a118eb0a2" + "2f720cdb-6d52-4017-8021-12217a072bd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -734,7 +734,7 @@ "no-cache" ], "ETag": [ - "W/\"a1442294-59d4-4427-809d-5d4ce28e2692\"" + "W/\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -744,40 +744,40 @@ "14993" ], "x-ms-correlation-request-id": [ - "d1e16add-8fcf-48cc-b0de-172a55195d97" + "483cfa8c-2369-4371-8ddb-5bbd2591bd43" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:d1e16add-8fcf-48cc-b0de-172a55195d97" + "UKSOUTH:20180118T075449Z:483cfa8c-2369-4371-8ddb-5bbd2591bd43" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002?api-version=2017-03-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzcwMDI/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357?api-version=2017-03-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5OZXR3b3JrL25ldHdvcmtJbnRlcmZhY2VzL25pYzEzNTc/YXBpLXZlcnNpb249MjAxNy0wMy0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "daffe6e1-18a7-44a9-8fbb-40cb7e0b238c" + "4629b0f7-249f-43ce-8233-0d74adc1883d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", + "OSVersion/6.3.16299", "Microsoft.Azure.Management.Network.NetworkManagementClient/10.0.0-preview" ] }, - "ResponseBody": "{\r\n \"name\": \"nic7002\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"43065c82-f141-4203-83c5-bc2b8da6e8ee\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip9012\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002/ipConfigurations/ip9012\",\r\n \"etag\": \"W/\\\"a1442294-59d4-4427-809d-5d4ce28e2692\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/virtualNetworks/vn3964/subnets/sn1399\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"lj1barcdbrdefcmlp5kqolcioc.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", + "ResponseBody": "{\r\n \"name\": \"nic1357\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"key\": \"value\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"78b5c94a-3c22-4571-a7c1-06f471eb1e65\",\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"ip8046\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357/ipConfigurations/ip8046\",\r\n \"etag\": \"W/\\\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/virtualNetworks/vn7060/subnets/sn952\"\r\n },\r\n \"primary\": true,\r\n \"privateIPAddressVersion\": \"IPv4\"\r\n }\r\n }\r\n ],\r\n \"dnsSettings\": {\r\n \"dnsServers\": [],\r\n \"appliedDnsServers\": [],\r\n \"internalDomainNameSuffix\": \"apwxh0r0auqenmawgid1ykum1a.cx.internal.cloudapp.net\"\r\n },\r\n \"enableAcceleratedNetworking\": false,\r\n \"enableIPForwarding\": false\r\n },\r\n \"type\": \"Microsoft.Network/networkInterfaces\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1494" + "1493" ], "Content-Type": [ "application/json; charset=utf-8" @@ -789,7 +789,7 @@ "no-cache" ], "x-ms-request-id": [ - "b2bfb5de-b3e2-4801-b421-58363583f260" + "570b399d-1740-49f7-8314-9110db9077f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,7 +798,7 @@ "no-cache" ], "ETag": [ - "W/\"a1442294-59d4-4427-809d-5d4ce28e2692\"" + "W/\"beaca9e6-2e8b-4809-98d4-5a8b8a5976d1\"" ], "Server": [ "Microsoft-HTTPAPI/2.0", @@ -808,20 +808,20 @@ "14992" ], "x-ms-correlation-request-id": [ - "91066d91-670f-49a6-802c-e9556e5f2dd9" + "9ee554f3-e88c-47cc-bb4e-107c52a50204" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185220Z:91066d91-670f-49a6-802c-e9556e5f2dd9" + "UKSOUTH:20180118T075449Z:9ee554f3-e88c-47cc-bb4e-107c52a50204" ], "Date": [ - "Thu, 27 Jul 2017 18:52:20 GMT" + "Thu, 18 Jan 2018 07:54:49 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxNzM5P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MTk/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n },\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { @@ -832,22 +832,22 @@ "223" ], "x-ms-client-request-id": [ - "e6dbb0ea-5bd1-4297-b0fd-90b72c0f8810" + "a1aa7cda-bb56-445a-ab0c-9fa402997e02" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739\",\r\n \"name\": \"as1739\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"platformUpdateDomainCount\": 5,\r\n \"platformFaultDomainCount\": 2\r\n },\r\n \"type\": \"Microsoft.Compute/availabilitySets\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719\",\r\n \"name\": \"as719\",\r\n \"sku\": {\r\n \"name\": \"Aligned\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ - "438" + "436" ], "Content-Type": [ "application/json; charset=utf-8" @@ -858,14 +858,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;547,Microsoft.Compute/PutVM30Min;2730" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "2b9f83da-513b-4dfd-851d-a81c81b39b34" + "13947a5b-5226-4bd0-b101-543b866200fa" ], "Cache-Control": [ "no-cache" @@ -878,43 +881,43 @@ "1199" ], "x-ms-correlation-request-id": [ - "a9e4474a-d8fc-48da-b8a4-19cd6acfd5c0" + "869d48be-7c39-4399-8afb-1156e611a5ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185223Z:a9e4474a-d8fc-48da-b8a4-19cd6acfd5c0" + "UKSOUTH:20180118T075451Z:869d48be-7c39-4399-8afb-1156e611a5ee" ], "Date": [ - "Thu, 27 Jul 2017 18:52:22 GMT" + "Thu, 18 Jan 2018 07:54:50 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"fromImage\"\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"[Placeholder]\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"name\": \"test\",\r\n \"caching\": \"None\",\r\n \"createOption\": \"FromImage\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"caching\": \"None\",\r\n \"createOption\": \"Empty\",\r\n \"diskSizeGB\": 30,\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"adminPassword\": \"rohittest123!\"\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1193" + "1279" ], "x-ms-client-request-id": [ - "00698f62-91b8-4a15-bff8-9d72f96bd444" + "35852eff-1c97-4e87-ab7a-2984f009ef42" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n }\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Creating\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1656" @@ -929,16 +932,19 @@ "no-cache" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01" + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01" + ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/PutVM3Min;546,Microsoft.Compute/PutVM30Min;2729" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "67d3f728-679e-4aab-a53a-5c52c4cf3496" + "8a159a4e-c571-4049-b846-6855e94b87f2" ], "Cache-Control": [ "no-cache" @@ -951,34 +957,34 @@ "1198" ], "x-ms-correlation-request-id": [ - "30f8e336-9db6-497a-8d2e-f3fe20a548df" + "77329f95-3f68-40ee-b2e8-8795c7822705" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185225Z:30f8e336-9db6-497a-8d2e-f3fe20a548df" + "UKSOUTH:20180118T075453Z:77329f95-3f68-40ee-b2e8-8795c7822705" ], "Date": [ - "Thu, 27 Jul 2017 18:52:24 GMT" + "Thu, 18 Jan 2018 07:54:53 GMT" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -989,14 +995,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11976,Microsoft.Compute/GetOperation30Min;23557" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "4106b064-d900-4892-be92-861d4907acd4" + "e45ea356-6727-4aa6-9e32-f834b116d9ee" ], "Cache-Control": [ "no-cache" @@ -1009,34 +1018,34 @@ "14998" ], "x-ms-correlation-request-id": [ - "d3862a7d-fdd3-41ba-b694-464565e6bf24" + "da280476-1ad4-42f9-9215-df41633a07ca" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185255Z:d3862a7d-fdd3-41ba-b694-464565e6bf24" + "UKSOUTH:20180118T075523Z:da280476-1ad4-42f9-9215-df41633a07ca" ], "Date": [ - "Thu, 27 Jul 2017 18:52:55 GMT" + "Thu, 18 Jan 2018 07:55:23 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1047,14 +1056,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11978,Microsoft.Compute/GetOperation30Min;23550" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b28566e5-5ed5-4ac4-9c1b-a1e2eafc8593" + "687709cd-82a7-438b-bfda-64449a30263b" ], "Cache-Control": [ "no-cache" @@ -1067,34 +1079,34 @@ "14997" ], "x-ms-correlation-request-id": [ - "be19fa63-d78c-4939-9537-9dd291b33c57" + "f2cac1b3-fd55-4daa-b773-9508c87b16f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185325Z:be19fa63-d78c-4939-9537-9dd291b33c57" + "UKSOUTH:20180118T075555Z:f2cac1b3-fd55-4daa-b773-9508c87b16f4" ], "Date": [ - "Thu, 27 Jul 2017 18:53:25 GMT" + "Thu, 18 Jan 2018 07:55:55 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1105,14 +1117,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11973,Microsoft.Compute/GetOperation30Min;23543" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "b89ac62c-fe4f-43ca-9319-5024de381e1b" + "08d734a4-9abc-459e-a615-6c3860600117" ], "Cache-Control": [ "no-cache" @@ -1125,34 +1140,34 @@ "14996" ], "x-ms-correlation-request-id": [ - "0f36ad39-4a66-47c7-a140-4aa97146ae86" + "1f9b7914-578d-4687-a8eb-cd5ebb0ffb2e" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185355Z:0f36ad39-4a66-47c7-a140-4aa97146ae86" + "UKSOUTH:20180118T075627Z:1f9b7914-578d-4687-a8eb-cd5ebb0ffb2e" ], "Date": [ - "Thu, 27 Jul 2017 18:53:55 GMT" + "Thu, 18 Jan 2018 07:56:27 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1163,14 +1178,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11965,Microsoft.Compute/GetOperation30Min;23533" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "c2fdf8df-3975-40b1-ba8f-9fbb5f0c1212" + "68ee6c66-5d92-4c2a-9bc5-0823479b3e73" ], "Cache-Control": [ "no-cache" @@ -1183,34 +1201,34 @@ "14995" ], "x-ms-correlation-request-id": [ - "fe1b47e9-1eac-48d9-b7f4-3377734daab9" + "75c2570d-f761-4c18-bf6e-ec774fa320a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185425Z:fe1b47e9-1eac-48d9-b7f4-3377734daab9" + "UKSOUTH:20180118T075703Z:75c2570d-f761-4c18-bf6e-ec774fa320a1" ], "Date": [ - "Thu, 27 Jul 2017 18:54:25 GMT" + "Thu, 18 Jan 2018 07:57:03 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "134" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1221,14 +1239,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11959,Microsoft.Compute/GetOperation30Min;23520" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "46c3c986-06c0-4502-84bc-7f378be5c208" + "19640a8e-f98d-4904-8a79-05e7670ff026" ], "Cache-Control": [ "no-cache" @@ -1241,34 +1262,34 @@ "14994" ], "x-ms-correlation-request-id": [ - "1e2a7c6e-d945-409d-aff1-19328a252281" + "049b3c18-70e9-486b-b1cc-fdd3c8d5d082" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185456Z:1e2a7c6e-d945-409d-aff1-19328a252281" + "UKSOUTH:20180118T075735Z:049b3c18-70e9-486b-b1cc-fdd3c8d5d082" ], "Date": [ - "Thu, 27 Jul 2017 18:54:56 GMT" + "Thu, 18 Jan 2018 07:57:34 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/8a159a4e-c571-4049-b846-6855e94b87f2?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzhhMTU5YTRlLWM1NzEtNDA0OS1iODQ2LTY4NTVlOTRiODdmMj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", + "ResponseBody": "{\r\n \"startTime\": \"2018-01-17T23:54:52.6108974-08:00\",\r\n \"endTime\": \"2018-01-17T23:58:03.7840357-08:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"8a159a4e-c571-4049-b846-6855e94b87f2\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "133" + "184" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1279,72 +1300,17 @@ "Pragma": [ "no-cache" ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "6bd55425-b5e6-4048-8d52-92d8e3ae5b97" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" - ], - "x-ms-correlation-request-id": [ - "62132c37-9d72-43a4-84d7-21a0c53579e5" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185526Z:62132c37-9d72-43a4-84d7-21a0c53579e5" - ], - "Date": [ - "Thu, 27 Jul 2017 18:55:25 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/67d3f728-679e-4aab-a53a-5c52c4cf3496?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzY3ZDNmNzI4LTY3OWUtNGFhYi1hNTNhLTVjNTJjNGNmMzQ5Nj9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:52:24.565579-07:00\",\r\n \"endTime\": \"2017-07-27T11:55:49.003335-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"67d3f728-679e-4aab-a53a-5c52c4cf3496\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "182" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetOperation3Min;11955,Microsoft.Compute/GetOperation30Min;23509" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "32bdc5c8-6499-4b89-b3b0-88159c9abef1" + "ab0a53b6-a900-43f5-af86-8aa167bf9224" ], "Cache-Control": [ "no-cache" @@ -1354,34 +1320,34 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14992" + "14993" ], "x-ms-correlation-request-id": [ - "14d5eca4-1bfb-4b0f-9d72-c24abaf76595" + "f16c0ab3-140d-4ce5-828d-bdfd3192672f" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:14d5eca4-1bfb-4b0f-9d72-c24abaf76595" + "UKSOUTH:20180118T075807Z:f16c0ab3-140d-4ce5-828d-bdfd3192672f" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2076" @@ -1395,14 +1361,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4789,Microsoft.Compute/LowCostGet30Min;38257" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "c3b7acd7-b978-4566-9bfc-90af052de50b" + "c97097ee-98f3-441a-bd98-ec9236eb3f81" ], "Cache-Control": [ "no-cache" @@ -1412,40 +1381,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" + "14992" ], "x-ms-correlation-request-id": [ - "15f039eb-2162-4d1f-a61c-9204186f6566" + "7e992291-467d-4023-999a-59e305f3733c" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:15f039eb-2162-4d1f-a61c-9204186f6566" + "UKSOUTH:20180118T075807Z:7e992291-467d-4023-999a-59e305f3733c" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:07 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "addba0f5-c74e-41f1-b998-4225185732f3" + "b5642742-0c43-4bcb-b352-ec35e2e3b7ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ "2076" @@ -1459,14 +1428,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4788,Microsoft.Compute/LowCostGet30Min;38256" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "3b68d235-0d7b-4c69-88a8-6e010ae60ffd" + "59c39824-1172-419d-98f4-c579dbd6bfa6" ], "Cache-Control": [ "no-cache" @@ -1476,43 +1448,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" + "14991" ], "x-ms-correlation-request-id": [ - "f87db58a-3282-40e6-a043-748a19afdc20" + "e09361d4-97b2-4e00-8d7f-f5238dc8c3ff" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185556Z:f87db58a-3282-40e6-a043-748a19afdc20" + "UKSOUTH:20180118T075819Z:e09361d4-97b2-4e00-8d7f-f5238dc8c3ff" ], "Date": [ - "Thu, 27 Jul 2017 18:55:55 GMT" + "Thu, 18 Jan 2018 07:58:19 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?$expand=instanceView&api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806?$expand=instanceView&api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDY/JGV4cGFuZD1pbnN0YW5jZVZpZXcmYXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "060acdf2-67db-4f72-abe6-08b0fab2a1c9" + "55b202bd-7265-465e-8ae1-a547ec91f575" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:55:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:55:48.9877086-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"instanceView\": {\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-18T00:03:08-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bn6prdapp04\",\r\n \"fabricTenantName\": \"e00bb07b-5642-4516-8708-e20be0ab37ea\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:58:03.7683697-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n }\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3570" + "3860" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1523,14 +1495,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4793,Microsoft.Compute/LowCostGet30Min;38247" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "054a2744-792c-4bc5-a469-591671dc1bc2" + "e9596bd5-796e-4812-8c97-7331d6fd90ae" ], "Cache-Control": [ "no-cache" @@ -1540,43 +1515,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" + "14983" ], "x-ms-correlation-request-id": [ - "2d658e1b-f65a-439a-bff6-0e0d1c634009" + "b782e8d0-7217-45a6-93c2-6643bb0f961a" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:2d658e1b-f65a-439a-bff6-0e0d1c634009" + "UKSOUTH:20180118T080321Z:b782e8d0-7217-45a6-93c2-6643bb0f961a" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:20 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957/instanceView?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTcvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806/instanceView?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDYvaW5zdGFuY2VWaWV3P2FwaS12ZXJzaW9uPTIwMTctMTItMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "697294ea-7b81-4bf2-b281-6cbd48a2962a" + "7b175c3c-ccad-4d10-9e63-045e5d4fe443" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"Unknown\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/Unavailable\",\r\n \"level\": \"Warning\",\r\n \"displayStatus\": \"Not Ready\",\r\n \"message\": \"VM status blob is found but not yet populated.\",\r\n \"time\": \"2017-07-27T11:55:57-07:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:52:27.4405805-07:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2017-07-27T11:55:48.9877086-07:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"computerName\": \"Test\",\r\n \"osName\": \"Windows Server 2012 R2 Datacenter\",\r\n \"osVersion\": \"Microsoft Windows NT 6.3.9600.0\",\r\n \"vmAgent\": {\r\n \"vmAgentVersion\": \"2.7.41491.859\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Ready\",\r\n \"message\": \"GuestAgent is running and accepting new configurations.\",\r\n \"time\": \"2018-01-18T00:03:08-08:00\"\r\n }\r\n ]\r\n },\r\n \"disks\": [\r\n {\r\n \"name\": \"test\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n },\r\n {\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:54:54.5015474-08:00\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"internalData\": {\r\n \"fabricCluster\": \"bn6prdapp04\",\r\n \"fabricTenantName\": \"e00bb07b-5642-4516-8708-e20be0ab37ea\"\r\n },\r\n \"statuses\": [\r\n {\r\n \"code\": \"ProvisioningState/succeeded\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"Provisioning succeeded\",\r\n \"time\": \"2018-01-17T23:58:03.7683697-08:00\"\r\n },\r\n {\r\n \"code\": \"PowerState/running\",\r\n \"level\": \"Info\",\r\n \"displayStatus\": \"VM running\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "1271" + "1533" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1587,14 +1562,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/GetInstanceView3Min;4796,Microsoft.Compute/GetInstanceView30Min;23954" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "a9fc44e2-aca0-4745-894d-de7b81f11139" + "97da7c61-6812-483a-b9fd-24fc85368710" ], "Cache-Control": [ "no-cache" @@ -1604,40 +1582,40 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14982" ], "x-ms-correlation-request-id": [ - "7c53e78c-b3cb-4bbc-8a4f-40096a5db6a2" + "cea09528-3b33-4ee6-950c-23033ac9e2f6" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:7c53e78c-b3cb-4bbc-8a4f-40096a5db6a2" + "UKSOUTH:20180118T080332Z:cea09528-3b33-4ee6-950c-23033ac9e2f6" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e6a6ea91-1f2b-450a-8199-11599377e0ec" + "02eece79-4cea-4c77-821c-9ccbed251af2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.0" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"f2f9ee76-8151-4606-9d06-b3af8c6d0665\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/disks/vm1957_disk2_1efeaed6c6dd4928b2a84d0c3dbfb53c\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Network/networkInterfaces/nic7002\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957\",\r\n \"name\": \"vm1957\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"vmId\": \"5c1ee1ee-0fab-46b0-be7d-e78483d42298\",\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Standard_A1_v2\"\r\n },\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \"publisher\": \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n \"sku\": \"2012-R2-Datacenter\",\r\n \"version\": \"4.127.20170406\"\r\n },\r\n \"osDisk\": {\r\n \"osType\": \"Windows\",\r\n \"name\": \"test\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/test\"\r\n },\r\n \"diskSizeGB\": 128\r\n },\r\n \"dataDisks\": [\r\n {\r\n \"lun\": 0,\r\n \"name\": \"vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\",\r\n \"createOption\": \"Empty\",\r\n \"caching\": \"None\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": \"Standard_LRS\",\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/disks/vm1806_disk2_1d192a15eef141e195d3a7d873fd82b1\"\r\n },\r\n \"diskSizeGB\": 30\r\n }\r\n ]\r\n },\r\n \"osProfile\": {\r\n \"computerName\": \"Test\",\r\n \"adminUsername\": \"Foo12\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": true\r\n },\r\n \"secrets\": []\r\n },\r\n \"networkProfile\": {\r\n \"networkInterfaces\": [\r\n {\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Network/networkInterfaces/nic1357\"\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"zones\": [\r\n \"1\"\r\n ],\r\n \"type\": \"Microsoft.Compute/virtualMachines\",\r\n \"location\": \"eastus2\",\r\n \"tags\": {\r\n \"RG\": \"rg\",\r\n \"testTag\": \"1\"\r\n },\r\n \"id\": \"/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806\",\r\n \"name\": \"vm1806\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ "2349" @@ -1651,14 +1629,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/HighCostGet3Min;159,Microsoft.Compute/HighCostGet30Min;798" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "27f2c9ca-6e13-47dc-bc6a-7b8e8294e7c7" + "d5eafb29-6107-4f9d-87a3-238bedf8eb42" ], "Cache-Control": [ "no-cache" @@ -1668,43 +1649,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14981" ], "x-ms-correlation-request-id": [ - "f8d22f0e-6852-41a1-a741-190046bc8e34" + "73298417-6f05-4984-931b-a9ff5f4bcaf5" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:f8d22f0e-6852-41a1-a741-190046bc8e34" + "UKSOUTH:20180118T080333Z:73298417-6f05-4984-931b-a9ff5f4bcaf5" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTcvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/virtualMachines/vm1806/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE4MDYvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0b9b4fbd-2baa-497d-be97-4531f2bf38ad" + "1eafdfc2-3389-44dc-a457-24ab3a94be45" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "8824" + "6225" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1715,14 +1696,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4792,Microsoft.Compute/LowCostGet30Min;38246" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "903fef43-59da-479b-910f-c73067b6097b" + "d5ea3ce6-fc33-439f-b3e2-98879152bf26" ], "Cache-Control": [ "no-cache" @@ -1732,43 +1716,43 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14980" ], "x-ms-correlation-request-id": [ - "bd9b4ef3-888b-4935-8723-9aac94f40575" + "3e92a2ee-2c96-4ad5-9032-c14f83143ea3" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:bd9b4ef3-888b-4935-8723-9aac94f40575" + "UKSOUTH:20180118T080333Z:3e92a2ee-2c96-4ad5-9032-c14f83143ea3" ], "Date": [ - "Thu, 27 Jul 2017 18:55:56 GMT" + "Thu, 18 Jan 2018 08:03:32 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/availabilitySets/as1739/vmSizes?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXMxNzM5L3ZtU2l6ZXM/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar2034/providers/Microsoft.Compute/availabilitySets/as719/vmSizes?api-version=2017-12-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjIwMzQvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL2F2YWlsYWJpbGl0eVNldHMvYXM3MTkvdm1TaXplcz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f96f45cb-33fb-4e93-a619-c51ecec5633d" + "7d620a30-8741-49c6-8484-301e3250ad9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.1649.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_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\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\": 4\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\": 8\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\": 16\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\": 32\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\": 8\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\": 16\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\": 32\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\": 64\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\": 8\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\": 16\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\": 32\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\": 64\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_GS1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 5765120,\r\n \"memoryInMB\": 262144,\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\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\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\": 8\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\": 16\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\": 32\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\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Standard_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 71680,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A5\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 138240,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A6\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 291840,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A7\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 619520,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Basic_A0\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 768,\r\n \"maxDataDiskCount\": 1\r\n },\r\n {\r\n \"name\": \"Basic_A1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 1792,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Basic_A2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 61440,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Basic_A3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 122880,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Basic_A4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 245760,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_A1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 10240,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_A2m_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 20480,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_A4m_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A4_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 40960,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_A8m_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_A8_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 81920,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_B1ms\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048,\r\n \"memoryInMB\": 1024,\r\n \"maxDataDiskCount\": 2\r\n },\r\n {\r\n \"name\": \"Standard_B2ms\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_B4ms\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_B8ms\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 7168,\r\n \"memoryInMB\": 3584,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13-2_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS13-4_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14-4_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS14-8_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS2_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS5_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_DS11_v2_Promo\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS12_v2_Promo\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS13_v2_Promo\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS14_v2_Promo\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_F1s\",\r\n \"numberOfCores\": 1,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096,\r\n \"memoryInMB\": 2048,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_F2s\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 8192,\r\n \"memoryInMB\": 4096,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_F4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_F8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_F16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_D2_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 65636,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 16384,\r\n \"memoryInMB\": 8192,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_D4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_D8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_D16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_D64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E2_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 51200,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_E4_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 102400,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_E8_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 204800,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_E16_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 409600,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 819200,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1638400,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E2s_v3\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 32768,\r\n \"memoryInMB\": 16384,\r\n \"maxDataDiskCount\": 4\r\n },\r\n {\r\n \"name\": \"Standard_E4s_v3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 65536,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_E8s_v3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 131072,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_E16s_v3\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 262144,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32-8s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32-16s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E32s_v3\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 524288,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64-16s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64-32s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_E64s_v3\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 884736,\r\n \"memoryInMB\": 442368,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_DS15_v2\",\r\n \"numberOfCores\": 20,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 286720,\r\n \"memoryInMB\": 143360,\r\n \"maxDataDiskCount\": 64\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\": 4\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\": 8\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\": 16\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\": 32\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\": 8\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\": 16\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\": 32\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\": 64\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\": 8\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\": 16\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\": 32\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\": 64\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_GS1\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_GS2\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 114688,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_GS3\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 229376,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_GS4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS4-4\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS4-8\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 458752,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5-8\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_GS5-16\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 917504,\r\n \"memoryInMB\": 458752,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L4s\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 694272,\r\n \"memoryInMB\": 32768,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_L8s\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1421312,\r\n \"memoryInMB\": 65536,\r\n \"maxDataDiskCount\": 32\r\n },\r\n {\r\n \"name\": \"Standard_L16s\",\r\n \"numberOfCores\": 16,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2874368,\r\n \"memoryInMB\": 131072,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_L32s\",\r\n \"numberOfCores\": 32,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 5765120,\r\n \"memoryInMB\": 262144,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NV6\",\r\n \"numberOfCores\": 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n },\r\n {\r\n \"name\": \"Standard_NV12\",\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n },\r\n {\r\n \"name\": \"Standard_NV24\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\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\": 4\r\n },\r\n {\r\n \"name\": \"Standard_DS2\",\r\n \"numberOfCores\": 2,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 14336,\r\n \"memoryInMB\": 7168,\r\n \"maxDataDiskCount\": 8\r\n },\r\n {\r\n \"name\": \"Standard_DS3\",\r\n \"numberOfCores\": 4,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 28672,\r\n \"memoryInMB\": 14336,\r\n \"maxDataDiskCount\": 16\r\n },\r\n {\r\n \"name\": \"Standard_DS4\",\r\n \"numberOfCores\": 8,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 57344,\r\n \"memoryInMB\": 28672,\r\n \"maxDataDiskCount\": 32\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\": 8\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\": 16\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\": 32\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\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NC6\",\r\n \"numberOfCores\": 6,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 389120,\r\n \"memoryInMB\": 57344,\r\n \"maxDataDiskCount\": 24\r\n },\r\n {\r\n \"name\": \"Standard_NC12\",\r\n \"numberOfCores\": 12,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 696320,\r\n \"memoryInMB\": 114688,\r\n \"maxDataDiskCount\": 48\r\n },\r\n {\r\n \"name\": \"Standard_NC24\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_NC24r\",\r\n \"numberOfCores\": 24,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 1474560,\r\n \"memoryInMB\": 229376,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-16ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64-32ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64ms\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1792000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M64s\",\r\n \"numberOfCores\": 64,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 2048000,\r\n \"memoryInMB\": 1024000,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-32ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128-64ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128ms\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 3891200,\r\n \"maxDataDiskCount\": 64\r\n },\r\n {\r\n \"name\": \"Standard_M128s\",\r\n \"numberOfCores\": 128,\r\n \"osDiskSizeInMB\": 1047552,\r\n \"resourceDiskSizeInMB\": 4096000,\r\n \"memoryInMB\": 2048000,\r\n \"maxDataDiskCount\": 64\r\n }\r\n ]\r\n}", "ResponseHeaders": { "Content-Length": [ - "20146" + "31583" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1779,14 +1763,17 @@ "Pragma": [ "no-cache" ], + "x-ms-ratelimit-remaining-resource": [ + "Microsoft.Compute/LowCostGet3Min;4791,Microsoft.Compute/LowCostGet30Min;38245" + ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "cae603a7-d4af-4033-92e3-dfc8d92505bc_131595063111857321" ], "x-ms-request-id": [ - "305fe737-399b-496d-9f02-71dbd2373ec5" + "5aa25a14-7d71-4098-861d-f847e887e8e8" ], "Cache-Control": [ "no-cache" @@ -1796,37 +1783,37 @@ "Microsoft-HTTPAPI/2.0" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14985" + "14979" ], "x-ms-correlation-request-id": [ - "81c112a2-638b-401f-af0b-22a467a9b002" + "a47ee856-5c09-4ae6-ada5-b81dab96b743" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185557Z:81c112a2-638b-401f-af0b-22a467a9b002" + "UKSOUTH:20180118T080333Z:a47ee856-5c09-4ae6-ada5-b81dab96b743" ], "Date": [ - "Thu, 27 Jul 2017 18:55:57 GMT" + "Thu, 18 Jan 2018 08:03:33 GMT" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourceGroups/crptestar1693/providers/Microsoft.Compute/virtualMachines/vm1957?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlR3JvdXBzL2NycHRlc3RhcjE2OTMvcHJvdmlkZXJzL01pY3Jvc29mdC5Db21wdXRlL3ZpcnR1YWxNYWNoaW5lcy92bTE5NTc/YXBpLXZlcnNpb249MjAxNy0xMi0wMQ==", + "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar2034?api-version=2017-05-10", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjIwMzQ/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "550dfeb8-975e-432a-9b6f-b63cc2ae076a" + "fb6e89da-a127-4c72-a21a-3eb2a2e08ad2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.7.2101.1", + "FxVersion/4.7.2600.0", "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" + "OSVersion/6.3.16299", + "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" ] }, "ResponseBody": "", @@ -1840,689 +1827,64 @@ "Pragma": [ "no-cache" ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "26c2ce5e-46b5-42be-baf8-2913bc178487" - ], - "Cache-Control": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?monitor=true&api-version=2017-12-01" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" - ], - "x-ms-correlation-request-id": [ - "092100db-f1a7-4b05-9444-26db2797c196" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185558Z:092100db-f1a7-4b05-9444-26db2797c196" - ], - "Date": [ - "Thu, 27 Jul 2017 18:55:57 GMT" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" + "1198" ], "x-ms-request-id": [ - "5b4099da-1031-4b77-9195-3d3e875ac2b3" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14984" + "405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "x-ms-correlation-request-id": [ - "5e061085-801e-4da0-9781-2629098acf0c" + "405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "x-ms-routing-request-id": [ - "WESTUS2:20170727T185628Z:5e061085-801e-4da0-9781-2629098acf0c" - ], - "Date": [ - "Thu, 27 Jul 2017 18:56:27 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" + "UKSOUTH:20180118T080336Z:405d87d2-5884-4caf-b523-e6f5af9fbb23" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "0099f910-2a43-4b09-909d-9f9d085cf374" - ], "Cache-Control": [ "no-cache" ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14983" - ], - "x-ms-correlation-request-id": [ - "a5066724-a40e-4321-95ff-3334e458b05e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185658Z:a5066724-a40e-4321-95ff-3334e458b05e" - ], "Date": [ - "Thu, 27 Jul 2017 18:56:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "ce3c0fd6-30ec-4425-91cc-f085fd6ef8c8" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14982" - ], - "x-ms-correlation-request-id": [ - "af4231a9-b8c9-4601-9866-d3deb565fa07" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185728Z:af4231a9-b8c9-4601-9866-d3deb565fa07" + "Thu, 18 Jan 2018 08:03:35 GMT" ], - "Date": [ - "Thu, 27 Jul 2017 18:57:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "5957bc88-3189-4ec0-9371-e2fa8321e0b6" - ], - "Cache-Control": [ - "no-cache" - ], - "Server": [ - "Microsoft-HTTPAPI/2.0", - "Microsoft-HTTPAPI/2.0" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14981" - ], - "x-ms-correlation-request-id": [ - "4774f23f-4f34-412c-839d-25aade3dba94" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185758Z:4774f23f-4f34-412c-839d-25aade3dba94" - ], - "Date": [ - "Thu, 27 Jul 2017 18:57:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"status\": \"InProgress\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "134" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "3638582a-d3b3-4485-af8e-c3fed29f4b17" - ], - "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": [ - "b86c007a-ae6b-425b-85ef-b797339590d4" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185829Z:b86c007a-ae6b-425b-85ef-b797339590d4" - ], - "Date": [ - "Thu, 27 Jul 2017 18:58:28 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/providers/Microsoft.Compute/locations/eastus2/operations/26c2ce5e-46b5-42be-baf8-2913bc178487?api-version=2017-12-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ29tcHV0ZS9sb2NhdGlvbnMvZWFzdHVzMi9vcGVyYXRpb25zLzI2YzJjZTVlLTQ2YjUtNDJiZS1iYWY4LTI5MTNiYzE3ODQ4Nz9hcGktdmVyc2lvbj0yMDE3LTEyLTAx", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.Compute.ComputeManagementClient/1.0.690.0" - ] - }, - "ResponseBody": "{\r\n \"startTime\": \"2017-07-27T11:55:58.4408256-07:00\",\r\n \"endTime\": \"2017-07-27T11:58:29.5659277-07:00\",\r\n \"status\": \"Succeeded\",\r\n \"name\": \"26c2ce5e-46b5-42be-baf8-2913bc178487\"\r\n}", - "ResponseHeaders": { - "Content-Length": [ - "184" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-served-by": [ - "cae603a7-d4af-4033-92e3-dfc8d92505bc_131455174024680322" - ], - "x-ms-request-id": [ - "08a88558-a31f-4f1a-87c4-424efc26ac1b" - ], - "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": [ - "693537fa-dcad-446e-ab06-d7ae98c0838a" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185859Z:693537fa-dcad-446e-ab06-d7ae98c0838a" - ], - "Date": [ - "Thu, 27 Jul 2017 18:58:58 GMT" - ] - }, - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/resourcegroups/crptestar1693?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL3Jlc291cmNlZ3JvdXBzL2NycHRlc3RhcjE2OTM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7e325e6f-51f0-4074-9cda-da7250dc6104" - ], - "accept-language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" - ], - "x-ms-request-id": [ - "255cad06-463c-4336-b2c7-48e010a03e23" - ], - "x-ms-correlation-request-id": [ - "255cad06-463c-4336-b2c7-48e010a03e23" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185900Z:255cad06-463c-4336-b2c7-48e010a03e23" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:59:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" + "Location": [ + "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIyMDM0LUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" ] }, "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14991" - ], - "x-ms-request-id": [ - "b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "x-ms-correlation-request-id": [ - "b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T185931Z:b703cefd-c7ae-4857-8bfd-9b40dc45e752" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 18:59:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14990" - ], - "x-ms-request-id": [ - "0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "x-ms-correlation-request-id": [ - "0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190001Z:0a23efe7-006e-4790-a101-5ea08ac486f6" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:00:00 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14989" - ], - "x-ms-request-id": [ - "d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "x-ms-correlation-request-id": [ - "d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190031Z:d425c255-ef40-4329-bb3b-6478f92cba8e" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:00:30 GMT" - ], - "Location": [ - "https://management.azure.com/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10" - ] - }, - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/b936ff46-de59-4b9d-806e-00df62b1bfad/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DUlBURVNUQVIxNjkzLUVBU1RVUzIiLCJqb2JMb2NhdGlvbiI6ImVhc3R1czIifQ?api-version=2017-05-10", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYjkzNmZmNDYtZGU1OS00YjlkLTgwNmUtMDBkZjYyYjFiZmFkL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEVWxCVVJWTlVRVkl4TmprekxVVkJVMVJWVXpJaUxDSnFiMkpNYjJOaGRHbHZiaUk2SW1WaGMzUjFjeklpZlE/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.7.2101.1", - "OSName/Windows_10_Enterprise", - "OSVersion/6.3.15063", - "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0-preview" - ] - }, - "ResponseBody": "", - "ResponseHeaders": { - "Content-Length": [ - "0" - ], - "Expires": [ - "-1" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" - ], - "x-ms-request-id": [ - "361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "x-ms-correlation-request-id": [ - "361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "x-ms-routing-request-id": [ - "WESTUS2:20170727T190101Z:361c8783-17e0-4256-87e6-bdbea46bab3c" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Thu, 27 Jul 2017 19:01:01 GMT" - ] - }, - "StatusCode": 200 } ], "Names": { "TestVMScenarioOperationsInternal": [ - "crptestar1693", - "crptestar9371", - "as1739" + "crptestar2034", + "crptestar7553", + "as719" ], "CreatePublicIP": [ - "pip7339", - "dn7924" + "pip3740", + "dn969" ], "CreateVNET": [ - "vn3964", - "sn1399" + "vn7060", + "sn952" ], "CreateNIC": [ - "nic7002", - "ip9012" + "nic1357", + "ip8046" ], "CreateDefaultVMInput": [ - "crptestar751", - "crptestar3126", - "crptestar840", - "vm1957", - "Microsoft.Compute/virtualMachines1047" + "crptestar5012", + "crptestar9214", + "crptestar9295", + "vm1806", + "Microsoft.Compute/virtualMachines2118" ] }, "Variables": { "SubscriptionId": "b936ff46-de59-4b9d-806e-00df62b1bfad" } -} +} \ No newline at end of file diff --git a/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs b/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs index 34b0b0dee9a68..6acb09188fe50 100644 --- a/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs +++ b/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetNetworkProfileTests.cs @@ -185,10 +185,10 @@ public void TestVMScaleSetWithPublicIP() var vmss = m_CrpClient.VirtualMachineScaleSets.Get(rgName, vmssName); Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration); - Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings); - Assert.Equal(dnsname, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings.DomainNameLabel); Assert.Equal("pip1", vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.Name); Assert.Equal(10, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.IdleTimeoutInMinutes); + Assert.NotNull(vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings); + Assert.Equal(dnsname, vmss.VirtualMachineProfile.NetworkProfile.NetworkInterfaceConfigurations[0].IpConfigurations[0].PublicIPAddressConfiguration.DnsSettings.DomainNameLabel); passed = true; } finally diff --git a/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs index 3506d66906efc..07c3df51a3fdc 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/ComputeManagementClient.cs @@ -130,6 +130,11 @@ public partial class ComputeManagementClient : ServiceClient public virtual IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; private set; } + /// + /// Gets the IVirtualMachineRunCommandsOperations. + /// + public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } + /// /// Gets the IResourceSkusOperations. /// @@ -145,11 +150,6 @@ public partial class ComputeManagementClient : ServiceClient public virtual ISnapshotsOperations Snapshots { get; private set; } - /// - /// Gets the IVirtualMachineRunCommandsOperations. - /// - public virtual IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; private set; } - /// /// Gets the IContainerServicesOperations. /// @@ -368,10 +368,10 @@ private void Initialize() VirtualMachineScaleSetExtensions = new VirtualMachineScaleSetExtensionsOperations(this); VirtualMachineScaleSetRollingUpgrades = new VirtualMachineScaleSetRollingUpgradesOperations(this); VirtualMachineScaleSetVMs = new VirtualMachineScaleSetVMsOperations(this); + VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); ResourceSkus = new ResourceSkusOperations(this); Disks = new DisksOperations(this); Snapshots = new SnapshotsOperations(this); - VirtualMachineRunCommands = new VirtualMachineRunCommandsOperations(this); ContainerServices = new ContainerServicesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); AcceptLanguage = "en-US"; diff --git a/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs index 48420ed28f07f..0097ff1831a67 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/IComputeManagementClient.cs @@ -125,6 +125,11 @@ public partial interface IComputeManagementClient : System.IDisposable /// IVirtualMachineScaleSetVMsOperations VirtualMachineScaleSetVMs { get; } + /// + /// Gets the IVirtualMachineRunCommandsOperations. + /// + IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } + /// /// Gets the IResourceSkusOperations. /// @@ -140,11 +145,6 @@ public partial interface IComputeManagementClient : System.IDisposable /// ISnapshotsOperations Snapshots { get; } - /// - /// Gets the IVirtualMachineRunCommandsOperations. - /// - IVirtualMachineRunCommandsOperations VirtualMachineRunCommands { get; } - /// /// Gets the IContainerServicesOperations. /// diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs index cc9411e9adf20..c4aa9dc9bd237 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/DataDisk.cs @@ -55,18 +55,21 @@ public DataDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public DataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) + public DataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { Lun = lun; Name = name; Vhd = vhd; Image = image; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -120,6 +123,13 @@ public DataDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machine should be /// created.&lt;br&gt;&lt;br&gt; Possible values diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs index a7af497266f62..92743c0e28e79 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/OSDisk.cs @@ -62,12 +62,14 @@ public OSDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public OSDisk(DiskCreateOptionTypes createOption, OperatingSystemTypes? osType = default(OperatingSystemTypes?), DiskEncryptionSettings encryptionSettings = default(DiskEncryptionSettings), string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) + public OSDisk(DiskCreateOptionTypes createOption, OperatingSystemTypes? osType = default(OperatingSystemTypes?), DiskEncryptionSettings encryptionSettings = default(DiskEncryptionSettings), string name = default(string), VirtualHardDisk vhd = default(VirtualHardDisk), VirtualHardDisk image = default(VirtualHardDisk), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), ManagedDiskParameters managedDisk = default(ManagedDiskParameters)) { OsType = osType; EncryptionSettings = encryptionSettings; @@ -75,6 +77,7 @@ public OSDisk() Vhd = vhd; Image = image; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -139,6 +142,13 @@ public OSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machine should be /// created.&lt;br&gt;&lt;br&gt; Possible values diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs index 51793a2d8b29b..2043b21092759 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineInstanceView.cs @@ -35,6 +35,12 @@ public VirtualMachineInstanceView() /// the virtual machine. /// Specifies the fault domain of the /// virtual machine. + /// The computer name assigned to the + /// virtual machine. + /// The Operating System running on the virtual + /// machine. + /// The version of Operating System running on + /// the virtual machine. /// The Remote desktop certificate /// thumbprint. /// The VM Agent running on the virtual @@ -51,10 +57,13 @@ public VirtualMachineInstanceView() /// Azure also enables you to see a screenshot of the VM from the /// hypervisor. /// The resource status information. - public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), IList statuses = default(IList)) + public VirtualMachineInstanceView(int? platformUpdateDomain = default(int?), int? platformFaultDomain = default(int?), string computerName = default(string), string osName = default(string), string osVersion = default(string), string rdpThumbPrint = default(string), VirtualMachineAgentInstanceView vmAgent = default(VirtualMachineAgentInstanceView), MaintenanceRedeployStatus maintenanceRedeployStatus = default(MaintenanceRedeployStatus), IList disks = default(IList), IList extensions = default(IList), BootDiagnosticsInstanceView bootDiagnostics = default(BootDiagnosticsInstanceView), IList statuses = default(IList)) { PlatformUpdateDomain = platformUpdateDomain; PlatformFaultDomain = platformFaultDomain; + ComputerName = computerName; + OsName = osName; + OsVersion = osVersion; RdpThumbPrint = rdpThumbPrint; VmAgent = vmAgent; MaintenanceRedeployStatus = maintenanceRedeployStatus; @@ -82,6 +91,25 @@ public VirtualMachineInstanceView() [JsonProperty(PropertyName = "platformFaultDomain")] public int? PlatformFaultDomain { get; set; } + /// + /// Gets or sets the computer name assigned to the virtual machine. + /// + [JsonProperty(PropertyName = "computerName")] + public string ComputerName { get; set; } + + /// + /// Gets or sets the Operating System running on the virtual machine. + /// + [JsonProperty(PropertyName = "osName")] + public string OsName { get; set; } + + /// + /// Gets or sets the version of Operating System running on the virtual + /// machine. + /// + [JsonProperty(PropertyName = "osVersion")] + public string OsVersion { get; set; } + /// /// Gets or sets the Remote desktop certificate thumbprint. /// diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs index 38b70bc20ed55..c2244676f4291 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetDataDisk.cs @@ -44,16 +44,19 @@ public VirtualMachineScaleSetDataDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// Specifies the size of an empty data disk /// in gigabytes. This element can be used to overwrite the name of the /// disk in a virtual machine image. <br><br> This value /// cannot be larger than 1023 GB /// The managed disk parameters. - public VirtualMachineScaleSetDataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), int? diskSizeGB = default(int?), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetDataDisk(int lun, DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), int? diskSizeGB = default(int?), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Name = name; Lun = lun; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; DiskSizeGB = diskSizeGB; ManagedDisk = managedDisk; @@ -92,6 +95,13 @@ public VirtualMachineScaleSetDataDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets the create option. Possible values include: /// 'FromImage', 'Empty', 'Attach' diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs index e3527c6d24d53..c7820fd883f33 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetOSDisk.cs @@ -48,6 +48,8 @@ public VirtualMachineScaleSetOSDisk() /// **ReadWrite** <br><br> Default: **None for Standard /// storage. ReadOnly for Premium storage**. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// This property allows you to specify the type /// of the OS that is included in the disk if creating a VM from /// user-image or a specialized VHD. <br><br> Possible @@ -58,10 +60,11 @@ public VirtualMachineScaleSetOSDisk() /// Specifies the container urls that are /// used to store operating system disks for the scale set. /// The managed disk parameters. - public VirtualMachineScaleSetOSDisk(DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetOSDisk(DiskCreateOptionTypes createOption, string name = default(string), CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), OperatingSystemTypes? osType = default(OperatingSystemTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Name = name; Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; CreateOption = createOption; OsType = osType; Image = image; @@ -94,6 +97,13 @@ public VirtualMachineScaleSetOSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets specifies how the virtual machines in the scale set /// should be created.&lt;br&gt;&lt;br&gt; The only diff --git a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs index d9963d53dfa8d..8eb3464ce66fb 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/Models/VirtualMachineScaleSetUpdateOSDisk.cs @@ -36,6 +36,8 @@ public VirtualMachineScaleSetUpdateOSDisk() /// /// The caching type. Possible values include: /// 'None', 'ReadOnly', 'ReadWrite' + /// Specifies whether + /// writeAccelerator should be enabled or disabled on the disk. /// The Source User Image VirtualHardDisk. This /// VirtualHardDisk will be copied before using it to attach to the /// Virtual Machine. If SourceImage is provided, the destination @@ -43,9 +45,10 @@ public VirtualMachineScaleSetUpdateOSDisk() /// The list of virtual hard disk container /// uris. /// The managed disk parameters. - public VirtualMachineScaleSetUpdateOSDisk(CachingTypes? caching = default(CachingTypes?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) + public VirtualMachineScaleSetUpdateOSDisk(CachingTypes? caching = default(CachingTypes?), bool? writeAcceleratorEnabled = default(bool?), VirtualHardDisk image = default(VirtualHardDisk), IList vhdContainers = default(IList), VirtualMachineScaleSetManagedDiskParameters managedDisk = default(VirtualMachineScaleSetManagedDiskParameters)) { Caching = caching; + WriteAcceleratorEnabled = writeAcceleratorEnabled; Image = image; VhdContainers = vhdContainers; ManagedDisk = managedDisk; @@ -64,6 +67,13 @@ public VirtualMachineScaleSetUpdateOSDisk() [JsonProperty(PropertyName = "caching")] public CachingTypes? Caching { get; set; } + /// + /// Gets or sets specifies whether writeAccelerator should be enabled + /// or disabled on the disk. + /// + [JsonProperty(PropertyName = "writeAcceleratorEnabled")] + public bool? WriteAcceleratorEnabled { get; set; } + /// /// Gets or sets the Source User Image VirtualHardDisk. This /// VirtualHardDisk will be copied before using it to attach to the diff --git a/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs b/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs index 91062783d95d1..8cdaaf3bf93ff 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/SdkInfo_ComputeManagementClient.cs @@ -20,13 +20,12 @@ public static IEnumerable> ApiInfo_ComputeManageme new Tuple("Compute", "VirtualMachineExtensionImages", "2017-12-01"), new Tuple("Compute", "VirtualMachineExtensions", "2017-12-01"), new Tuple("Compute", "VirtualMachineImages", "2017-12-01"), - new Tuple("Compute", "VirtualMachineRunCommands", "2017-03-30"), + new Tuple("Compute", "VirtualMachineRunCommands", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetExtensions", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetRollingUpgrades", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSetVMs", "2017-12-01"), new Tuple("Compute", "VirtualMachineScaleSets", "2017-12-01"), new Tuple("Compute", "VirtualMachineSizes", "2017-12-01"), - new Tuple("Compute", "VirtualMachines", "2017-03-30"), new Tuple("Compute", "VirtualMachines", "2017-12-01"), new Tuple("ContainerService", "ContainerServices", "2017-01-31"), }.AsEnumerable(); diff --git a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs index 7bf86978fb5f1..12c7a27379198 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachineRunCommandsOperations.cs @@ -94,7 +94,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -293,7 +293,7 @@ internal VirtualMachineRunCommandsOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs index 03a238a5d06aa..6fb3168cec065 100644 --- a/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs +++ b/src/SDKs/Compute/Management.Compute/Generated/VirtualMachinesOperations.cs @@ -3510,7 +3510,7 @@ internal VirtualMachinesOperations(ComputeManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2017-03-30"; + string apiVersion = "2017-12-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; diff --git a/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj b/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj index 2336451280a13..f089c18d5ed22 100644 --- a/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj +++ b/src/SDKs/Compute/Management.Compute/Microsoft.Azure.Management.Compute.csproj @@ -6,12 +6,12 @@ Microsoft.Azure.Management.Compute Provides developers with libraries for the updated compute platform under Azure Resource manager to deploy virtual machine, virtual machine extensions and availability set management capabilities. Launch, restart, scale, capture and manage VMs, VM Extensions and more. Note: This client library is for Virtual Machines under Azure Resource Manager. - 17.3.0 + 17.4.0 Microsoft.Azure.Management.Compute management;virtual machine;compute; diff --git a/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs b/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs index b61f2e1af6e54..418dd802654ea 100644 --- a/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs +++ b/src/SDKs/Compute/Management.Compute/Properties/AssemblyInfo.cs @@ -8,7 +8,7 @@ [assembly: AssemblyDescription("Provides management functionality for Microsoft Azure Compute Resources.")] [assembly: AssemblyVersion("17.0.0.0")] -[assembly: AssemblyFileVersion("17.3.0.0")] +[assembly: AssemblyFileVersion("17.4.0.0")] [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Microsoft Azure .NET SDK")] diff --git a/src/SDKs/_metadata/compute_resource-manager.txt b/src/SDKs/_metadata/compute_resource-manager.txt index 9d11fdb98294f..6ad899c25a227 100644 --- a/src/SDKs/_metadata/compute_resource-manager.txt +++ b/src/SDKs/_metadata/compute_resource-manager.txt @@ -1,11 +1,11 @@ -2018-01-10 00:32:31 UTC +2018-01-25 00:37:31 UTC 1) azure-rest-api-specs repository information GitHub user: Azure -Branch: current -Commit: e7a671f89163de46237d548bf1bff9f207dd567d +Branch: master +Commit: b3b961c82028c83e2ef47e5d4884a3c089a68f0f 2) AutoRest information Requested version: latest -Bootstrapper version: C:\Users\hylee\AppData\Roaming\npm `-- autorest@2.0.4215 +Bootstrapper version: C:\Users\hylee\AppData\Roaming\npm `-- autorest@2.0.4238 Latest installed version: